Changes

→‎Alternatives using Content Patcher: update for new Nexus profile pages
Line 3: Line 3:  
<div style="border: 1px solid red; background: #FCC; padding: 1em;">'''XNB mods are an older type of mod and are no longer recommended. SMAPI can't validate them for compatibility. Use XNB mods at your own risk, or see [[#Alternatives using Content Patcher|alternatives using Content Patcher]].'''</div>
 
<div style="border: 1px solid red; background: #FCC; padding: 1em;">'''XNB mods are an older type of mod and are no longer recommended. SMAPI can't validate them for compatibility. Use XNB mods at your own risk, or see [[#Alternatives using Content Patcher|alternatives using Content Patcher]].'''</div>
   −
An '''XNB mod''' replaces some of your game's <tt>.xnb</tt> files to change the game in some way.
+
An '''XNB mod''' replaces some of your game's <samp>.xnb</samp> files to change the game (unlike newer mods that go in your <samp>Mods</samp> folder).
    
==FAQs==
 
==FAQs==
 
===What are XNB mods?===
 
===What are XNB mods?===
XNB mods work by replacing your game's data files (which have a <tt>.xnb</tt> extension). For example, let's say you want to change Abigail's portraits; you can replace <tt>Content/Portraits/Abigail.xnb</tt> with a modded version to do it. (See [[Modding:Editing XNB files|editing XNB files]] for more info on the XNB format.)
+
XNB mods work by replacing your game's data files (which have a <samp>.xnb</samp> extension). For example, let's say you want to change Abigail's portraits; you can replace <samp>Content/Portraits/Abigail.xnb</samp> with a modded version to do it. (See [[Modding:Editing XNB files|editing XNB files]] for more info on the XNB format.)
    
===Why are they discouraged?===
 
===Why are they discouraged?===
 
XNB mods have a lot of limitations, often conflict with each other, usually break when the game updates, are hard to install and remove, etc.
 
XNB mods have a lot of limitations, often conflict with each other, usually break when the game updates, are hard to install and remove, etc.
   −
Consider only using [[Modding:Player Guide|SMAPI mods and content packs]]. These have several benefits over XNB mods:
+
Consider only using [[Modding:Player Guide/Getting Started|SMAPI mods and content packs]]. These have several benefits over XNB mods:
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
Line 22: Line 22:  
| ease of installation
 
| ease of installation
 
| ✘ different for every mod
 
| ✘ different for every mod
|colspan="2"| ✓ drop into <tt>Mods</tt>
+
|colspan="2"| ✓ drop into <samp>Mods</samp>
 
|-  
 
|-  
 
| ease of uninstallation
 
| ease of uninstallation
 
| ✘ manually restore original files
 
| ✘ manually restore original files
|colspan="2"| ✓ remove from <tt>Mods</tt>
+
|colspan="2"| ✓ remove from <samp>Mods</samp>
 
|-
 
|-
 
| update checks
 
| update checks
Line 34: Line 34:  
| compatibility checks
 
| compatibility checks
 
| ✘ none
 
| ✘ none
|colspan="2"| ✓ incompatible mods are disabled before they cause problem<br />✓ [[Modding:SMAPI compatibility|compatibility list]] is regularly updated with updates and workarounds
+
|colspan="2"| ✓ incompatible mods are disabled before they cause problems<br />✓ [[Modding:Mod compatibility|compatibility list]] is regularly updated with updates and workarounds
 
|-
 
|-
 
| mod compatibility
 
| mod compatibility
Line 48: Line 48:  
| game compatibility
 
| game compatibility
 
| ✘ broken by most game updates
 
| ✘ broken by most game updates
|colspan="2"| ✓ SMAPI automatically rewrites many mods for compatibility<br />✓ open-source mods are updated quickly
+
|colspan="2"| ✓ SMAPI automatically rewrites many mods for compatibility<br />✓ [[Modding:Open source|open-source]] mods are updated quickly
 
|}
 
|}
    
===Do they work on Linux, Mac, Windows, or consoles?===
 
===Do they work on Linux, Mac, Windows, or consoles?===
XNB mods work equally on Linux, Mac, and Windows. Consoles aren't supported.
+
XNB mods work equally on Linux, Mac, Windows, and Android. Consoles aren't supported.
    
===Can they corrupt my save?===
 
===Can they corrupt my save?===
Yes, but it's uncommon. Make sure you back up [[#Save files|your save files]] occasionally, and remove any custom content before uninstalling an XNB mod. In most cases, you can fix save corruption by [[Saves#Undo the last save|undoing the last save]].
+
Yes, but it's uncommon. Make sure you back up [[Saves#Finding_save_files|your save files]] occasionally, and remove any custom content before uninstalling an XNB mod. In most cases, you can fix save corruption by [[Saves#Undo the last save|undoing the last save]].
    
===Do they disable Steam achievements?===
 
===Do they disable Steam achievements?===
Line 61: Line 61:     
==Alternatives using Content Patcher==
 
==Alternatives using Content Patcher==
[https://www.nexusmods.com/stardewvalley/mods/1915 Content Patcher] is a SMAPI mod that makes XNB-like changes with all the benefits of [[Modding:Content packs|SMAPI content packs]]. Many XNB mods have a Content Patcher equivalent, or have been updated unofficially to use it. Consider using these instead where available.
+
{{nexus mod|1915|Content Patcher}} is a SMAPI mod that makes XNB-like changes with all the benefits of [[Modding:Content packs|SMAPI content packs]]. Many XNB mods have a Content Patcher equivalent, or have been updated unofficially to use it. Consider using these instead where available.
   −
'''Modders:''' when migrating XNB mods, only use <tt>Action: Load</tt> if you actually need to replace the whole file (e.g. portrait mods). Don't use <tt>Action: Load</tt> for dialogue mods or to change a small part of a file! Always check the official mod page to see if a conversion has been officially uploaded. This list excludes mods native to Content Patcher.
+
'''Modders:'''
 +
* When migrating XNB mods, only use <samp>Action: Load</samp> if you actually need to replace the whole file (''e.g.,'' portrait mods). Don't use <samp>Action: Load</samp> for dialogue mods or to change a small part of a file!
 +
* See ''[https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/ Migrating XNB mods to Content Patcher packs]'' on the official forums for more info about creating conversions.
    
{| class="wikitable plainlinks sortable"
 
{| class="wikitable plainlinks sortable"
 
|-
 
|-
! mod name
+
! style="position: sticky; top: 0;"|Mod Name
! original author
+
! style="position: sticky; top: 0;"|Original Author
! Content Patcher equivalent
+
! style="position: sticky; top: 0;"|Content Patcher Equivalent
! links
+
! style="position: sticky; top: 0;"|Links
 
|-
 
|-
{{/xnb
  −
  |original name  = 2CUTE FarmCave
  −
  |original author = taintedwheat
  −
  |original url    = https://community.playstarbound.com/threads/2cute-farmcave-w-legend-of-zelda-like-fairy-hotspring-also-an-underground-library-update-7-19.117897/
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299086
  −
  |update author  = Allayna
  −
  |update version  = 1.0
  −
}}
   
{{/xnb
 
{{/xnb
 
   |original name  = 15x15 Greenhouse
 
   |original name  = 15x15 Greenhouse
Line 89: Line 82:  
   |update author  = ChiiBee
 
   |update author  = ChiiBee
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 19th Century Elliott
 +
  |original author = Messias Mummo
 +
  |original url    = {{nexus mod|81}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
 +
  |update author  = Marigolden
 +
  |update version  = 1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = 2CUTE FarmCave
 +
  |original author = taintedwheat
 +
  |original url    = https://community.playstarbound.com/threads/2cute-farmcave-w-legend-of-zelda-like-fairy-hotspring-also-an-underground-library-update-7-19.117897/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/updating-mods-for-stardew-valley-1-3.142524/page-64#post-3331098
 +
  |update author  = Opalie
 +
  |update version  = 2.0.1-unofficial.1-opalie
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 97: Line 108:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284310
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284310
 
   |update author  = Allayna
 
   |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 3D-Slime Hutch
 +
  |original author = anjarpsx
 +
  |original url    = {{nexus mod|737}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-91#post-3325452
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 106: Line 126:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3289904
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3289904
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
  |update version  = 1.0
  −
}}
  −
{{/xnb
  −
  |original name  = Ace's Evelyn
  −
  |original author = Acerbicon
  −
  |original url    = {{nexus mod|933}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
  −
  |update author  = Aquilegia
   
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 127: Line 138:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = A More Interesting Sam
+
   |original name  = A House for Linus
   |original author = ssr66
+
   |original author = bluestarkiller
   |original url    = {{nexus mod|1581}}
+
   |original url    = {{nexus mod|1177}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-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 author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
Line 143: Line 181:  
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |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
 
{{/xnb
Line 151: Line 216:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291350
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291350
 
   |update author  = squitz
 
   |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
 
   |update version  = 1.0
 
}}
 
}}
Line 163: Line 237:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Alex Reborn Overhaul
+
   |original name  = Ace's Evelyn
   |original author = Harzelora
+
   |original author = Acerbicon
   |original url    = {{nexus mod|748}}
+
   |original url    = {{nexus mod|933}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302103
+
  |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 author  = macaro0n
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alicedafox's New Shirts and New Skirts (Shirts Only)
 +
  |original author = Alicedafox
 +
  |original url    = {{nexus mod|1128}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 214: Line 324:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 
   |update author  = Allayna
 
   |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Modern Farm Buildings
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|1125}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322076
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 233: Line 352:  
   |update author  = acornfaerie
 
   |update author  = acornfaerie
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Overgrown Fairy Buildings RECOLOR
 +
  |original author = Kasuralixa
 +
  |original url    = {{nexus mod|1328}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3342172
 +
  |update author  = pepoluan
 +
  |update version  = 1.0.0-unofficial2.pepoluan
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 251: Line 379:  
   |update author  = Techonrye
 
   |update author  = Techonrye
 
   |update version  = 1.0
 
   |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
 
{{/xnb
Line 260: Line 397:  
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternative Evelyn
 +
  |original author = StaticOpium
 +
  |original url    = {{nexus mod|688}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-66222
 +
  |update author  = NeutronPong
 +
  |update version  = 1.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 268: Line 414:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262262
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262262
 
   |update author  = Fyn
 
   |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
 
   |update version  = 1.0
 
}}
 
}}
Line 275: Line 439:  
   |original url    = {{nexus mod|377}}
 
   |original url    = {{nexus mod|377}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322545
   |update author  = SuperElement & Allayna
+
   |update author  = coldazrael, SuperElement & Allayna
 
   |update version  = 3.0
 
   |update version  = 3.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternate Sheep Colors
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|184}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Amaterasu Dog Replacement
 +
  |original author = carnage157
 +
  |original url    = https://community.playstarbound.com/threads/cals-pet-replacements-amaterasu-carbuncle-moogle-last-updated-5-12-16.109941/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307632
 +
  |update author  = Reppamon
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 287: Line 469:  
   |update author  = MouseyPounds
 
   |update author  = MouseyPounds
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Animal Onesies for Toddlers
 +
  |original author = pizza margherita
 +
  |original url    = https://community.playstarbound.com/threads/animal-onesies-for-toddlers-junimo-onesies-are-up.111041/
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-36805
 +
  |update author  = DamnedxAngel
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |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
 
{{/xnb
Line 295: Line 504:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
 
   |update author  = Allayna
 
   |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
 
   |update version  = 1.0
 
}}
 
}}
Line 323: Line 541:  
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |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
 
{{/xnb
Line 332: Line 586:  
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |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
 
{{/xnb
Line 338: Line 610:  
   |original url    = {{nexus mod|299}}
 
   |original url    = {{nexus mod|299}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-20#post-3283861
+
   |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-51298
   |update author  = MouseyPounds
+
   |update author  = mouse
   |update version  = 1.4.1
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 358: Line 630:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
 
   |update author  = waftwaffle
 
   |update author  = waftwaffle
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bearish Harvey
 +
  |original author = Quart de Carton
 +
  |original url    = https://community.playstarbound.com/threads/old-post-in-new-thread-mod-list-modding-guides-and-general-modding-discussion.106868/page-8#post-2795746
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|4091}}
 +
  |update author  = annachibi
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 370: Line 651:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Beds Recolor
+
   |original name  = Bearded Clint Portrait
   |original author = Lumisteria
+
   |original author = Cathysaurusrex
   |original url    = {{nexus mod|361}}
+
   |original url    = {{nexus mod|409}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302144
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 0.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Bernese Mountain Dog
+
   |original name  = Bearded Clint Sprite
   |original author = Gweniaczek
+
   |original author = Cathysaurusrex
   |original url    = {{nexus mod|1848}}
+
   |original url    = {{nexus mod|408}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = paradigmnomad
+
  |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
 
   |update version  = 1.0
 
}}
 
}}
Line 394: Line 702:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258840
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258840
 
   |update author  = ShneekeyTheLost
 
   |update author  = ShneekeyTheLost
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Crop Visibility
 +
  |original author = Kona
 +
  |original url    = {{nexus mod|7459}}
 +
  |update name    = Better Crop Visibility
 +
  |update url      = {{nexus mod|8839}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 2.1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Dying Grandpa
 +
  |original author = MattytheMouse
 +
  |original url    = {{nexus mod|418}}
 +
  |update name    = Better Dying Grandpa Redux - CP
 +
  |update url      = {{nexus mod|8075}}
 +
  |update author  = Faedelity
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 404: Line 730:  
   |update author  = MouseyPounds
 
   |update author  = MouseyPounds
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Better Harvey Character Sprite
 +
  |original author = Plutey/Androxilogin
 +
  |original url    = {{nexus mod|363}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-52324
 +
  |update author  = Kreeate
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 410: Line 745:  
   |original url    = {{nexus mod|1421}}
 
   |original url    = {{nexus mod|1421}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267340
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347640
   |update author  = jhunichi
+
   |update author  = Jnuchi & imany
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Pigs & Recolours (v1.0)
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
 +
  |update name    = unofficial update
 +
  |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-56060
 +
  |update author  = Farilar
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Better Pigs & Recolours
+
   |original name  = Better Pigs & Recolours (v2.1)
 
   |original author = Zhuria
 
   |original author = Zhuria
 
   |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
 
   |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
Line 422: Line 766:  
   |update author  = twixstix
 
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Rain
 +
  |original author = Omnicorn
 +
  |original url    = {{nexus mod|146}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
 +
  |update author  = Marigolden
 +
  |update version  = 1.0.5-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 449: Line 802:  
   |update author  = minervamaga
 
   |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bigger Cave
 +
  |original author = KingJoey
 +
  |original url    = https://community.playstarbound.com/threads/bigger-cave-now-with-2-floors-and-farmable.109636/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/bigger-cave-now-with-2-floors-and-farmable.109636/page-6#post-3328716
 +
  |update author  = XiNaru
 +
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Bigger Farm (Carpenter compatible)
 +
  |original author = KingJoey
 +
  |original url    = https://community.playstarbound.com/threads/no-api-required-bigger-farm-carpenter-compatible.110398/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-91#post-3325112
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Biker Jacket Sebastian
 +
  |original author = TheMainFlamingoose
 +
  |original url    = {{nexus mod|2291}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-40583
 +
  |update author  = Techy-Jaden
 +
  |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 466: Line 846:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278384
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278384
 
   |update author  = Pak_RT & paradigmnomad
 
   |update author  = Pak_RT & paradigmnomad
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Black Cat
 +
  |original author = casildak
 +
  |original url    = {{nexus mod|286}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321024
 +
  |update author  = winterykite
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 485: Line 874:  
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |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
 
{{/xnb
Line 508: Line 915:  
   |original author = hisameartwork
 
   |original author = hisameartwork
 
   |original url    = {{nexus mod|1856}}
 
   |original url    = {{nexus mod|1856}}
   |update name    = unofficial update
+
   |update name    = unofficial update  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-22#post-3284987
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-82#post-3318386
   |update author  = Allayna
+
   |update author  = Allayna (Corrected by SheiFoxy)
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Blue Community Center
 +
  |original author = Sabrina Pegasigh
 +
  |original url    = {{nexus mod|1279}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366621
 +
  |update author  = ExnoticE
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 521: Line 937:  
   |update author  = Shalassa
 
   |update author  = Shalassa
 
   |update version  = 1.0
 
   |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
 
{{/xnb
Line 529: Line 963:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
 
   |update author  = D.Grey
 
   |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
 
   |update version  = 1.0
 
}}
 
}}
Line 538: Line 981:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Brunette Penny
 +
  |original author = Lechet
 +
  |original url    = {{nexus mod|19}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308320
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 548: Line 1,000:  
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |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
 
{{/xnb
Line 564: Line 1,052:  
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303120
 
   |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 author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
Line 583: Line 1,080:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
 
   |update author  = D.Grey
 
   |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
 
   |update version  = 1.0
 
}}
 
}}
Line 592: Line 1,098:  
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
 
   |update author  = arkoiris
 
   |update author  = arkoiris
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Catsine's Victorian Beehouses
 +
  |original author = Ernest/Catsine
 +
  |original url    = {{nexus mod|3297}}
 +
  |update name    = unofficial mod
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3345858
 +
  |update author  = xbukimina
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cel's Sheep
 +
  |original author = Celesty
 +
  |original url    = {{nexus mod|3027}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cerri's Walls and Floors
 +
  |original author = CerridwynMorgana
 +
  |original url    = {{nexus mod|1456}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/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
 
   |update version  = 1.0
 
}}
 
}}
Line 608: Line 1,150:  
   |original url    = {{nexus mod|13}}
 
   |original url    = {{nexus mod|13}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272744
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-108#post-3338254
   |update author  = D.Grey
+
   |update author  = pepoluan
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 620: Line 1,162:  
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
}}
  −
{{/xnb
  −
  |original name  = Chic Cute Kitchen
  −
  |original author = Mi/Campanulamis
  −
  |original url    = {{nexus mod|1018}}
  −
  |update name    = unofficial update
  −
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-14#post-3279168
  −
  |update author  = Kuriiyo
  −
  |update version  = 1.3
   
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 644: Line 1,177:  
   |original url    = {{nexus mod|1319}}
 
   |original url    = {{nexus mod|1319}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259911
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Child Clothing Rework
+
  |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 author = earthdeep
 
   |original url    = {{nexus mod|1961}}
 
   |original url    = {{nexus mod|1961}}
Line 658: Line 1,200:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Community Center Bundle Overhauls
+
   |original name  = Clean Shane's Room
   |original author = 7Yrs
+
   |original author = pandapants87 aka Ora
   |original url    = {{nexus mod|1062}}
+
   |original url    = {{nexus mod|575}}
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|575}}
 +
  |update author  = pandapants87 and minervamaga
 +
  |update version  = 2.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Clean Shave Harvey
 +
  |original author = Gemma
 +
  |original url    = {{nexus mod|71}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275848
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = Kuriiyo
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Coordinated Crafting Bars
+
   |original name  = Cleaner Barns and Coops
   |original author = yifalchunbee
+
   |original author = Fuse
   |original url    = {{nexus mod|554}}
+
   |original url    = {{nexus mod|926}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-13#post-3278756
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-119#post-3351045
   |update author  = Shalassa & arkoiris
+
   |update author  = stevanihalim
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = CRABBIT's new hair - combined
+
   |original name  = Cobblestone Path to Dark Grey Stone
   |original author = CRABBIT
+
   |original author = GoddessOfThieves
   |original url    = {{nexus mod|1368}}
+
   |original url    = {{nexus mod|165}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278197
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Kuriiyo
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Crioulo horse
+
   |original name  = Cockatiel Chickens
   |original author = Loo
+
   |original author = VanillaTiel 
   |original url    = {{nexus mod|1059}}
+
   |original url    = {{nexus mod|149}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = Amx
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Custom Farm Buildings (Non-Seasonal)
+
   |original name  = Coii's Hair Sets Pack
   |original author = Billy0815
+
   |original author = Coii
   |original url    = {{nexus mod|1413}}
+
   |original url    = {{nexus mod|2869}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-69#post-47618
   |update author  = D.Grey
+
   |update author  = UlyanaLeyana
 +
  |update version  = 1.4.0-unofficial.3
 +
}}
 +
{{/xnb
 +
  |original name  = Cold Weather Haley
 +
  |original author = Sessurea
 +
  |original url    = {{nexus mod|429}}
 +
  |update name    = Cold Weather Haley - Content Patcher
 +
  |update url      = {{nexus mod|3091}}
 +
  |update author  = Nanogamer7
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Custom Farm Buildings (Seasonal)
+
   |original name  = Colorful Crystal Paths
   |original author = billy0815
+
   |original author = FoxyFullmoon
   |original url    = {{nexus mod|1451}}
+
   |original url    = {{nexus mod|549}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3345549
   |update author  = hatmouse
+
   |update author  = k10_ftw/krissymarie
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Cute Cursor
+
   |original name  = Community Center Bundle Overhauls
   |original author = MissMochi
+
   |original author = 7Yrs
   |original url    = {{nexus mod|1727}}
+
   |original url    = {{nexus mod|1062}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358330
   |update author  = kngermanotta
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.4.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Cute Shirts Mod
+
   |original name  = Compact Bathroom for your Farmhouse
   |original author = tacodevourer
+
   |original author = Prismuth
   |original url    = {{nexus mod|1362}}
+
   |original url    = {{nexus mod|1626}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300802
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-46#post-29354
   |update author  = macaro0n
+
   |update author  = Rmdhn
   |update version  = 1.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Cuter Fatter Cows
+
   |original name  = Coordinated Crafting Bars
   |original author = IdentityPollution
+
   |original author = yifalchunbee
   |original url    = {{nexus mod|348}}
+
   |original url    = {{nexus mod|554}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291433
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-13#post-3278756
   |update author  = mellowmallow
+
   |update author  = Shalassa & arkoiris
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Daisen Mod - Replacement
+
   |original name  = Cozy Fishing Farm
   |original author = saturn
+
   |original author = opalie
   |original url    = {{nexus mod|1540}}
+
   |original url    = {{nexus mod|1398}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306920
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dark Red Haired Leah
+
   |original name  = CRABBIT's new hair - combined
   |original author = Satadoros
+
   |original author = CRABBIT
   |original url    = {{nexus mod|124}}
+
   |original url    = {{nexus mod|1368}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278197
   |update author  = D.Grey
+
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Darker Wood and Gold Craftables
+
   |original name  = Crimson's Rock Crab Recolors
   |original author = Eemie
+
   |original author = nekoCrimson
   |original url    = {{nexus mod|687}}
+
   |original url    = {{nexus mod|1743}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-14#post-3279235
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-74#post-3310439
   |update author  = Fyn
+
   |update author  = TheTearer
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dachshund (Dog Replacer)
+
   |original name  = Crioulo horse
   |original author = DarkKassanova
+
   |original author = Loo
   |original url    = {{nexus mod|156}}
+
   |original url    = {{nexus mod|1059}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274729
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
   |update author  = tera415
+
   |update author  = Amx
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dialogue Expansion - Eilliot (Doki Doki Compatible)
+
   |original name  = Custom Farm Buildings (Non-Seasonal)
   |original author = Sabreene
+
   |original author = Billy0815
   |original url    = {{nexus mod|1648}}
+
   |original url    = {{nexus mod|1413}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
   |update author  = ayahimew
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dino Velociraptor Reskin
+
   |original name  = Custom Farm Buildings (Seasonal)
   |original author = Zynonia
+
   |original author = billy0815
   |original url    = {{nexus mod|825}}
+
   |original url    = {{nexus mod|1451}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284410
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
   |update author  = Sparrows
+
   |update author  = hatmouse
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dirty Talking Sam (18+)
+
   |original name  = Cute Cursor
   |original author = Kagurahime
+
   |original author = MissMochi
   |original url    = {{nexus mod|862}}
+
   |original url    = {{nexus mod|1727}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
   |update author  = paradigmnomad
+
   |update author  = kngermanotta
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Diverse Stardew Valley
+
   |original name  = Cute Pink Albino Bunny Recolor
   |original author = nonsnufffie & SarahSyna
+
   |original author = Jirachi
  |original url    = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-jas-kent-and-neat-shane-added-27-05-17.125163/
+
   |original url    = {{nexus mod|1117}}
  |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 Wizard Redraw
  −
  |original author = Dizor
  −
   |original url    = {{nexus mod|74}}
   
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3332744
   |update author  = Pak_RT
+
   |update author  = netish
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dog Reskins Mod
+
   |original name  = Cute Shirts Mod
   |original author = magimatica
+
   |original author = tacodevourer
   |original url    = {{nexus mod|1098}}
+
   |original url    = {{nexus mod|1362}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300802
   |update author  = D.Grey
+
   |update author  = macaro0n
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dog Bandana
+
   |original name  = Cuter Fatter Cows
   |original author = JamieDepledge
+
   |original author = IdentityPollution
   |original url    = {{nexus mod|548}}
+
   |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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299873
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
   |update author  = farmerjack
+
   |update author  = Flyff
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Doki Doki Dialogue - Elliot
+
   |original name  = Dae's Marnie and Jas Character Redesgins
   |original author = Alistairweekend
+
   |original author = daeranilen
   |original url    = {{nexus mod|1560}}
+
   |original url    = https://community.playstarbound.com/threads/daes-character-redesigns-jodi-vincent-kent-jas-marnie.127409/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = ayahimew
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Dratini Shiny and Dratini Cat and Dog Replacement
+
   |original name  = Daisen Mod - Replacement
   |original author = linasouls9
+
   |original author = saturn
   |original url    = {{nexus mod|1508}}
+
   |original url    = {{nexus mod|1540}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = DreamBurrow's Elliott Portrait
+
   |original name  = Dangan Ronpa Trigger Happy Havoc Female Hair and Shirts
   |original author = DreamBurrow
+
   |original author = ZeiaZeh
   |original url    = {{nexus mod|158}}
+
   |original url    = {{nexus mod|163}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = waftwaffle
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Early Open Shops v1.2
+
   |original name  = Dark Buildings
   |original author = mmanlapat
+
   |original author = StaticOpium
   |original url    = {{nexus mod|1091}}
+
   |original url    = {{nexus mod|668}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278636
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Shalassa
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Easy Fishing 
+
   |original name  = Dark-Haired Leah
   |original author = mmanlapat
+
   |original author = Jokerine
   |original url    = {{nexus mod|1114}}
+
   |original url    = {{nexus mod|200}}
   |update name    = Lazy Fish
+
   |update name    = unofficial update
   |update url      = {{nexus mod|1971}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = ShneekeyTheLost
+
   |update author  = Marigolden
   |update version  = 1.1 or 1.2
+
   |update version  = 2.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Dialogue Reworked
+
   |original name  = Dark Red Haired Leah
   |original author = Scrambled1432
+
   |original author = Satadoros
   |original url    = {{nexus mod|1885}}
+
   |original url    = {{nexus mod|124}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
   |update author  = flameofthenight
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Reimagined
+
   |original name  = Darker Watered Soil
   |original author = Chisami
+
   |original author = Shardust
   |original url    = https://community.playstarbound.com/threads/emily-reimagined.135338/
+
   |original url    = {{nexus mod|1611}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3268878
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329578
   |update author  = paradigmnomad
+
   |update author  = pandachinoman
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Sprite and Portrait Overhaul
+
   |original name  = Darker Wood and Gold Craftables
   |original author = tolerdesigns
+
   |original author = Eemie
   |original url    = {{nexus mod|1004}}
+
   |original url    = {{nexus mod|687}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = MouseyPounds
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Emily Sprite Redux
+
   |original name  = Dachshund (Dog Replacer)
   |original author = The Mighty Palm
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|1800}}
+
   |original url    = {{nexus mod|156}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274729
   |update author  = coldazrael
+
   |update author  = tera415
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Animal Collection
+
   |original name  = DCBurger's Portraits (Hi-Res Only)
   |original author = Eemie
+
   |original author = DCBurger
   |original url    = {{nexus author|34984615}}
+
   |original url    = {{nexus mod|888}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277270
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-89#post-3324251
   |update author  = D.Grey & paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Classy Interior
+
   |original name  = DD's Handsome Harvey
   |original author = Eemie
+
   |original author = DewdropDewdrop
   |original url    = {{nexus mod|854}}
+
   |original url    = {{nexus mod|234}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3263281
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Asher404
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Classy New Interior (furniture)
+
   |original name  = Deluxe Barn Fix and more Space
   |original author = Eemie
+
   |original author = dizarus
   |original url    = {{nexus mod|854}}
+
   |original url    = {{nexus mod|305}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-17#post-3281043
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357649
   |update author  = acornfaerie
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Cute Long Hairstyles
+
   |original name  = Derpy Pugs
   |original author = Eemie
+
   |original author = Slimberton
   |original url    = {{nexus mod|910}}
+
   |original url    = {{nexus mod|278}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267152
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360538
   |update author  = jhunichi
+
   |update author  = jenf
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Dutch Farm Buildings
+
   |original name  = Dialogue Expansion - Eilliot (Doki Doki Compatible)
   |original author = Eemie
+
   |original author = Sabreene
   |original url    = {{nexus mod|1659}}
+
   |original url    = {{nexus mod|1648}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
   |update author  = hatmouse
+
   |update author  = ayahimew
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Iron Stone Cemetery Fence
+
   |original name  = Dino Velociraptor Reskin
   |original author = Eemie
+
   |original author = Zynonia
   |original url    = {{nexus mod|1033}}
+
   |original url    = {{nexus mod|825}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284410
   |update author  = Fyn
+
   |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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Just Another Map Recolour
+
   |original name  = Diverse Stardew Valley
   |original author = Eemie
+
   |original author = nonsnufffie & SarahSyna
   |original url    = {{nexus mod|599}}
+
   |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 name    = official update
   |update url      = {{nexus mod|2050}}
+
   |update url      = https://community.playstarbound.com/threads/diverse-stardew-unofficial-continuation-marnie-added-06-05-18.125163/
   |update author  = minervamaga
+
   |update author  = SarahSyna & Fyn
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie's English Lamp Posts
+
   |original name  = Dizor's Character Redraws
   |original author = Eemie
+
   |original author = Dizor
   |original url    = {{nexus mod|473}}
+
   |original url    = {{nexus author|Dizor}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-99#post-3331859
   |update author  = coldazrael, Kuriiyo & Pathoschild
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.0.0-unofficial.1-minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Medieval Modern Buildings
+
   |original name  = Dizor's Wizard Redraw
   |original author = Eemie
+
   |original author = Dizor
   |original url    = {{nexus mod|419}}
+
   |original url    = {{nexus mod|74}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267221
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
   |update author  = jhunichi
+
   |update author  = Pak_RT
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie New paths
+
   |original name  = Dog Reskins Mod
   |original author = Eemie
+
   |original author = magimatica
   |original url    = {{nexus mod|607}}
+
   |original url    = {{nexus mod|1098}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
   |update author  = Fyn
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Seasonal Victorian Buildings
+
   |original name  = Dog Bandana
   |original author = Eemie
+
   |original author = JamieDepledge
   |original url    = {{nexus mod|891}}
+
   |original url    = {{nexus mod|548}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299873
   |update author  = hatmouse
+
   |update author  = farmerjack
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Victorian Mailbox 
+
   |original name  = Doki Doki Dialogue - Elliot
   |original author = mmanlapat
+
   |original author = Alistairweekend
   |original url    = {{nexus mod|1069}}
+
   |original url    = {{nexus mod|1560}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3261025
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
   |update author  = .lavender.
+
   |update author  = ayahimew
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Wildflowers
+
   |original name  = Dratini Shiny and Dratini Cat and Dog Replacement
   |original author = Eemie
+
   |original author = linasouls9
   |original url    = {{nexus mod|1235}}
+
   |original url    = {{nexus mod|1508}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273640
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = Seyph
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eggplant Horse (Toumato - Obon Horse)
+
   |original name  = Drapper Krobus
   |original author = Toumato/kyubey777
+
   |original author = ProbablyAnonymous
   |original url    = {{nexus mod|100}}
+
   |original url    = {{nexus mod|2459}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273395
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = hatmouse
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Enari's Portraits
+
   |original name  = DreamBurrow's Elliott Portrait
   |original author = Enari
+
   |original author = DreamBurrow
   |original url    = {{nexus mod|137}}
+
   |original url    = {{nexus mod|158}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
   |update author  = Techonrye
+
   |update author  = waftwaffle
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Enhanced Dialogue Updated (not complete)
+
   |original name  = Dust Spirit Recolor- Susuwatari
   |original author = joykiller91
+
   |original author = FinalMantasyX
   |original url    = {{nexus mod|925}}
+
   |original url    = https://community.playstarbound.com/threads/dust-spirit-recolor-susuwatari-soot-spirits-from-spirited-away.107820/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-52216
   |update author  = flameofthenight
+
   |update author  = Shaymin
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Espeon Cat
+
   |original name  = DW3 Agumon Dinosaur Replacer
   |original author = CassandraRose
+
   |original author = boofdawg
   |original url    = {{nexus mod|1884}}
+
   |original url    = {{nexus mod|3276}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = {{nexus mod|8976}}
   |update author  = Allayna
+
   |update author  = UlyanaLeyana
   |update version  = 1.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Everyone Likes Joja Cola
+
   |original name  = Dwarf Jawa
   |original author = malcheese
+
   |original author = GreaterPorpoise
   |original url    = https://community.playstarbound.com/threads/valuable-joja-cola.129375/#post-3101942
+
   |original url    = https://community.playstarbound.com/threads/dwarf-jawa-sprite-portrait.110399/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3301076
+
   |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-18001
   |update author  = Allayna
+
   |update author  = mouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Expanded Access Maps
+
   |original name  = Early Open Shops v1.2
   |original author = Allayna
+
   |original author = mmanlapat
   |original url    = {{nexus mod|1504}}
+
   |original url    = {{nexus mod|1091}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|1504}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358433
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 16.1
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Expanded Woods
+
   |original name  = Easy Bundles
   |original author = Cylesburk
+
   |original author = Siddybear
   |original url    = {{nexus mod|1495}}
+
   |original url    = https://community.playstarbound.com/threads/super-easy-fishing-and-easy-bundles.109057/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358785
   |update author  = Techonrye
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Explorer Timmy Made A Shane
+
   |original name  = Easy Fishing 
   |original author = explorer_timmy
+
   |original author = mmanlapat
   |original url    = {{nexus mod|1921}}
+
   |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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277270
   |update author  = paradigmnomad
+
   |update author  = D.Grey & paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Extended Dialogue for Jodi and Kent
+
   |original name  = Eemie's Classy New Interior
   |original author = Seismothesaurus
+
   |original author = Eemie
   |original url    = {{nexus mod|1288}}
+
   |original url    = {{nexus mod|854}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306821
   |update author  = flameofthenight
+
   |update author  = coldazrael, littlesin21, Asher404, acornfaerie
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fancy Lamps
+
   |original name  = Eemie's Cute Long Hairstyles
   |original author = Lita
+
   |original author = Eemie
   |original url    = {{nexus mod|1881}}
+
   |original url    = {{nexus mod|910}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3274106
+
   |update url      = {{nexus mod|4526}}
   |update author  = kaitekat
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 2.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Farmhouse Basement Mod
+
   |original name  = Eemie Dutch Farm Buildings
   |original author = MiniPantsu
+
   |original author = Eemie
   |original url    = {{nexus mod|524}}
+
   |original url    = {{nexus mod|1659}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3285327
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
   |update author  = Moragaine, destroyerofsocks & Oak
+
   |update author  = hatmouse
   |update version  = 2.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Farmhouse Extended
+
   |original name  = Eemie Iron Stone Cemetery Fence
   |original author = QuantumConcious
+
   |original author = Eemie
   |original url    = {{nexus mod|192}}
+
   |original url    = {{nexus mod|1033}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
   |update author  = Allayna
+
   |update author  = Fyn
  |update version  = 1.7
  −
}}
  −
{{/xnb
  −
  |original name  = Fastoso's Qute Animals
  −
  |original author = Fastoso
  −
  |original url    = https://community.playstarbound.com/resources/qute-animals-cow-pig.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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Female Duck
+
   |original name  = Eemie Just Another Map Recolour
   |original author = CaveSalamander
+
   |original author = Eemie
   |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
+
   |original url    = {{nexus mod|599}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = {{nexus mod|2050}}
   |update author  = twixstix
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Female Wizard - Sprite and Portrait
+
   |original name  = Eemie's English Lamp Posts
   |original author = CreepyKat
+
   |original author = Eemie
   |original url    = {{nexus mod|1011}}
+
   |original url    = {{nexus mod|473}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300793
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
   |update author  = Allayna and paradigmnomad
+
   |update author  = coldazrael, Kuriiyo & Pathoschild
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Feminine Female Farmer
+
   |original name  = Eemie Medieval Modern Buildings
   |original author = HyperChicken01
+
   |original author = Eemie
   |original url    = {{nexus mod|407}}
+
   |original url    = {{nexus mod|419}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
+
   |update url      = {{nexus mod|4519}}
   |update author  = tenthousandcats
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 2.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fence by Eemie
+
   |original name  = Eemie New paths
 
   |original author = Eemie
 
   |original author = Eemie
   |original url    = {{nexus mod|580}}
+
   |original url    = {{nexus mod|607}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275040
   |update author  = junali
+
   |update author  = Fyn
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fix Desert Bus Stop
+
   |original name  = Eemie Seasonal Victorian Buildings
   |original author = DevilBro
+
   |original author = Eemie
   |original url    = {{nexus mod|339}}
+
   |original url    = {{nexus mod|891}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271635
   |update author  = OkikuMew
+
   |update author  = hatmouse
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Flower Valley
+
   |original name  = Eemie's Squirrel
   |original author = KAYA/jina2ya
+
   |original author = Eemie
   |original url    = {{nexus mod|2030}}
+
   |original url    = {{nexus mod|1658}}
  |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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Shalassa
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Flowery Fences Recolored
+
   |original name  = Eemie Victorian Buildings (Non-seasonal)
   |original author = MixedBabe
+
   |original author = Eemie
   |original url    = {{nexus mod|1289}}
+
   |original url    = {{nexus mod|682}}
   |update name    = unofficial update
+
   |update name    = Official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-32722928
+
   |update url      = {{nexus mod|3511}}
   |update author  = Shalassa
+
   |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fluffy Cows
+
   |original name  = Eemie Victorian Mailbox 
   |original author = Maromidew
+
   |original author = mmanlapat
   |original url    = {{nexus mod|922}}
+
   |original url    = {{nexus mod|1069}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3261025
   |update author  = Shalassa
+
   |update author  = .Lavender.
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fluffy Dogs & Other Alternative Dog Sprites! (Shiba Inu & Pomeranian)
+
   |original name  = Eemie Wildflowers
   |original author = Dawn
+
   |original author = Eemie
   |original url    = https://community.playstarbound.com/threads/fluffy-dogs-other-alternative-dog-sprites-update-8-pug-time.109948/
+
   |original url    = {{nexus mod|1235}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273640
   |update author  = twixstix
+
   |update author  = Seyph
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Fruit Trees Reshaped
+
   |original name  = Eggplant Horse (Toumato - Obon Horse)
   |original author = Chisami
+
   |original author = Toumato/kyubey777
   |original url    = https://community.playstarbound.com/threads/fruit-trees-reshaped-v2-addition.114556/
+
   |original url    = {{nexus mod|100}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264457
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273395
   |update author  = paradigmnomad
+
   |update author  = hatmouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Furniture Redone
+
   |original name  = Elle's Barn and Coop Animal Replacements
   |original author = peachitto
+
   |original author = junimods
   |original url    = {{nexus mod|1058}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300651
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322731
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = F-SV No Bowlegs
+
   |original name  = Elle's Pig Replacements
   |original author = Flumme
+
   |original author = junimods
   |original url    = {{nexus mod|1500}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303842
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = coldazrael
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Garden Hedge
+
   |original name  = Elle's Verata (Goat Replacement)
   |original author = ohrabbit
+
   |original author = junimods
   |original url    = {{nexus mod|168}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304232
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
   |update author  = Kuriiyo
+
   |update author  = Ches713
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = German Shepard Bundle Mod (No Cursors)
+
   |original name  = Elle's White Rabbit
   |original author = Beroin/deadduch
+
   |original author = junimods
   |original url    = {{nexus mod|54}}
+
   |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = D.Grey
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = GhostyTea's Cute Hats
+
   |original name  = Elliott Girl Portrait Ver
   |original author = GhostyTea
+
   |original author = EX renkon
   |original url    = {{nexus mod|1754}}
+
   |original url    = {{nexus mod|1936}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299595
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Glaceon Cat
+
   |original name  = Elliott Portrait Mod
   |original author = Halfwheat
+
   |original author = Lo0bo0
   |original url    = {{nexus mod|1788}}
+
   |original url    = {{nexus mod|738}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Glitched Burger - Furniture Overhaul
+
   |original name  = Elliot Replacer - Earlier Development Version
   |original author = Boneberry
+
   |original author = Thoroughly
   |original url    = https://community.playstarbound.com/threads/glitched-burger-furniture-overhaul.126892/
+
   |original url    = {{nexus mod|27}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303283
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Gnome Hat's Recolor
+
   |original name  = Elliott Revised
   |original author = Oak
+
   |original author = Saltnburn
   |original url    = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |original url    = {{nexus mod|1910}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308486
   |update author  = Oak
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Grass Path for Every Season
+
   |original name  = Elliott Refined
   |original author = MiaEmilia
+
   |original author = Chrysanthe
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
+
   |original url    = {{nexus mod|818}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323191
   |update author  = D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hairstyles recolored and a new Hairstyle Update
+
   |original name  = Elliot Spruced Up
   |original author = Alicedafox
+
   |original author = BlazingPug
   |original url    = {{nexus mod|1103}}
+
   |original url    = {{nexus mod|1291}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278565
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = ayahimew & Kuriiyo
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley/Penny/Leah Expanded Dialogue
+
   |original name  = Emily Dialogue Reworked
   |original author = KThxBye910
+
   |original author = Scrambled1432
   |original url    = https://community.playstarbound.com/resources/haley-penny-leah-expanded-dialogue.4697/
+
   |original url    = {{nexus mod|1885}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
Line 1,351: Line 1,911:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley Off-The-Shoulder Dress
+
   |original name  = Emily Reimagined
   |original author = Ahrimhan
+
   |original author = Chisami
   |original url    = {{nexus mod|1007}}
+
   |original url    = https://community.playstarbound.com/threads/emily-reimagined.135338/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3268878
   |update author  = Amx
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley Reskin
+
   |original name  = Emily Sprite and Portrait Overhaul
   |original author = magimatica
+
   |original author = tolerdesigns
   |original url    = {{nexus mod|1132}}
+
   |original url    = {{nexus mod|1004}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = paradigmnomad
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Handsome Mr. Qi
+
   |original name  = Emily Sprite Redux
   |original author = MomiChan
+
  |original author = The Mighty Palm
   |original url    = {{nexus mod|1582}}
+
  |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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
   |update author  = paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.1
 
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Happier Pig with New Eyes
+
   |original name  = Enari's Portraits
   |original author = Develsaa
+
   |original author = Enari
   |original url    = {{nexus mod|26}}
+
   |original url    = {{nexus mod|137}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
   |update author  = Allayna
+
   |update author  = Techonrye
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Harvey Personality Mod (Dialogue Only)
+
   |original name  = Enhanced Dialogue Updated (not complete)
   |original author = woosh0
+
   |original author = joykiller91
   |original url    = {{nexus mod|983}}
+
   |original url    = {{nexus mod|925}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
Line 1,396: Line 1,965:  
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Harvey Refined
+
   |original name  = Epona Horse Edit
   |original author = Chrysanthe
+
   |original author = Zhuria
   |original url    = {{nexus mod|879}}
+
   |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304554
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307632
   |update author  = AquilegiaStardew
+
   |update author  = Reppamon
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hay Silo
+
   |original name  = Espeon Cat
   |original author = Flor3nce2456
+
   |original author = CassandraRose
   |original url    = {{nexus mod|1519}}
+
   |original url    = {{nexus mod|1884}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hill-Top Forest Map
+
   |original name  = Everyone Likes Joja Cola
   |original author = Minnue
+
   |original author = malcheese
   |original url    = {{nexus mod|601}}
+
   |original url    = https://community.playstarbound.com/threads/valuable-joja-cola.129375/#post-3101942
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275679
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3301076
   |update author  = ChiiBee
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hobbit Hole
+
   |original name  = Expanded Access Maps
   |original author = LemonEX
+
   |original author = Allayna
   |original url    = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961
+
   |original url    = {{nexus mod|1504}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961/page-5#post-3268689
+
   |update url      = {{nexus mod|1504}}
   |update author  = Pathoschild
+
   |update author  = Allayna
   |update version  = 1.0-unofficial.1-pathoschild
+
   |update version  = 16.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = hojichas' Wallpaper and Flooring
+
   |original name  = Expanded Woods
   |original author = hojichas
+
   |original author = Cylesburk
   |original url    = {{nexus mod|912}}
+
   |original url    = {{nexus mod|1495}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271282
   |update author  = Allayna & Mitchell
+
   |update author  = Techonrye
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = hojichas' Seaside Interior
+
   |original name  = Explorer Timmy Made A Shane
   |original author = hojichas
+
   |original author = explorer_timmy
   |original url    = {{nexus mod|1189}}
+
   |original url    = {{nexus mod|1921}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
   |update author  = dreamsicl
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Holsteins (White Cow)
+
   |original name  = Extended Dialogue for Jodi and Kent
   |original author = Zhuria
+
   |original author = Seismothesaurus
   |original url    = {{nexus mod|45}}
+
   |original url    = {{nexus mod|1288}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = D.Grey
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hope's Farmer Customization Mods
+
   |original name  = Extended Slime Hutch
   |original author = HopeWasHere
+
   |original author = QuantumConcious
   |original url    = {{nexus mod|1008}}
+
   |original url    = https://community.playstarbound.com/threads/extendedslimehutch-with-safe-zone-and-storage-area-updated-19-4-interior-only.112455/page-2#post-2877091
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3349511
   |update author  = D.Grey
+
   |update author  = Jhoulana
   |update version  = 2.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = (NSFW) Horny Bachelors
+
   |original name  = Fall Heirloom Crops Overlay
   |original author = Girafarig
+
   |original author = makoace
   |original url    = {{nexus mod|791}}
+
   |original url    = {{nexus mod|2954}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-25#post-3286927
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-103#post-3334306
   |update author  = paradigmnomad & ShSammy
+
   |update author  = minervamaga
   |update version  = 1.0.1
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horse Edits & Recolours
+
   |original name  = Fancy Lamps
   |original author = Zhuria
+
   |original author = Lita
   |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
+
   |original url    = {{nexus mod|1881}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3274106
   |update author  = twixstix
+
   |update author  = kaitekat
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horses to Dragons/Pegasi
+
   |original name  = Farmer's Water Pipe
   |original author = Aternova
+
   |original author = Nectrus
   |original url    = https://community.playstarbound.com/threads/horses-to-dragons-pegasi-saddleless-steeds-and-hercules-pegasus.108539/
+
   |original url    = {{nexus mod|1195}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360590
   |update author  = Allayna & brybryj
+
   |update author  = nocato
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horse to Mule
+
   |original name  = Farmhouse Basement Mod
   |original author = magimatica
+
   |original author = MiniPantsu
   |original url    = {{nexus mod|1181}}
+
   |original url    = {{nexus mod|524}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3285327
   |update author  = paradigmnomad
+
   |update author  = Moragaine, destroyerofsocks & Oak
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hudson Valley Buildings
+
   |original name  = Farmhouse Extended
   |original author = oomps62, magimatica and endohare
+
   |original author = QuantumConcious
   |original url    = {{nexus mod|1478}}
+
   |original url    = {{nexus mod|192}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|2110}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
   |update author  = oomps62
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.7
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Immersive Marriage - Abigail
+
   |original name  = Fastoso's Qute Animals
   |original author = robolink
+
   |original author = Fastoso
   |original url    = {{nexus mod|33}}
+
   |original url    = {{chucklefish mod|3661}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271485
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
   |update author  = D.Grey
+
   |update author  = Pak_RT
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Improved Shed Mod
+
   |original name  = Fat Pony
   |original author = wintrparkgrl
+
   |original author = Jeiel Aranal/ChemiKhazi
   |original url    = https://www.reddit.com/r/StardewValley/comments/55x9hj/improved_shed_mod/
+
   |original url    = {{nexus mod|354}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258682
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3340715
   |update author  = ShneekeyTheLost
+
   |update author  = annachibi
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Iridium Ore Galaxy Horse
+
   |original name  = Female Bachelors Dialogue Overhaul
   |original author = PecuniamArt
+
   |original author = Valoodx
   |original url    = {{nexus mod|1006}}
+
   |original url    = {{nexus mod|3042}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301837
+
   |update url      = {{nexus mod|3042}}
   |update author  = Ches713
+
   |update author  = Valoodx
   |update version  = 1.1
+
   |update version  = 0.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Item Overhaul
+
   |original name  = Female Duck
   |original author = Boneberry
+
   |original author = CaveSalamander
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
+
   |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3300985
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
   |update author  = Allayna & paradigmnomad
+
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = JAC'd Greenhouse Extended
+
   |original name  = Female Wizard - Sprite and Portrait
   |original author = Plutey/Androxilogin
+
   |original author = CreepyKat
   |original url    = {{nexus mod|739}}
+
   |original url    = {{nexus mod|1011}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-48#post-3300793
   |update author  = D.Grey
+
   |update author  = Allayna and paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jamie's Balanced Greenhouse
+
   |original name  = Feminine Female Farmer
   |original author = JamieMage2005
+
   |original author = HyperChicken01
   |original url    = {{nexus mod|1078}}
+
   |original url    = {{nexus mod|407}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-32722928
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
   |update author  = Shalassa
+
   |update author  = tenthousandcats
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jodi and Vincent - Sprites and Portraits Remastered Mod
+
   |original name  = Fence by Eemie
   |original author = Shadowfire1223
+
   |original author = Eemie
   |original url    = {{nexus mod|1555}}
+
   |original url    = {{nexus mod|580}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
   |update author  = D.Grey
+
   |update author  = junali
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jungle Temple
+
   |original name  = Fish Tank Table
   |original author = UlithiumDragon
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|1014}}
+
   |original url    = {{nexus mod|205}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299529
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Junimo Artifact Digspots
+
   |original name  = Fix Desert Bus Stop
   |original author = Seismothesaurus
+
   |original author = DevilBro
   |original url    = {{nexus mod|1321}}
+
   |original url    = {{nexus mod|339}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
   |update author  = Allayna
+
   |update author  = Ensifera
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Karmylla's Cellar Edit
+
   |original name  = Flame Horses - 5 Colors
   |original author = Karmylla
+
   |original author = CreepyKat
   |original url    = {{nexus mod|1148}}
+
   |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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-20#post-3283606
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-109#post-3338661
   |update author  = Allayna
+
   |update author  = HeyItsDuke
   |update version  = 1.0
+
   |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
 
{{/xnb
   |original name  = Karmylla's Spouse Room Edits
+
   |original name  = Flowery Fences
   |original author = Karmylla
+
   |original author = Maromidew
   |original url    = {{nexus mod|1356}}
+
   |original url    = {{nexus mod|911}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-31#post-3292434
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
   |update author  = squitz
+
   |update author  = Shalassa
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kawaii Hats
+
   |original name  = Flowery Fences Recolored
   |original author = yuikami
+
   |original author = MixedBabe
   |original url    = {{nexus mod|64}}
+
   |original url    = {{nexus mod|1289}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3302982
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
   |update author  = coldazrael
+
   |update author  = Shalassa
   |update version  = 0.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kitchen Nook for 1st Farmhouse
+
   |original name  = Fluffy Cows
   |original author = Allayna
+
   |original author = Maromidew
   |original url    = {{nexus mod|1668}}
+
   |original url    = {{nexus mod|922}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|1668}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278570
   |update author  = Allayna
+
   |update author  = Shalassa
   |update version  = 2.6
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kitty Scarecrow Replacments
+
   |original name  = Fluffy Dogs & Other Alternative Dog Sprites! (Shiba Inu & Pomeranian)
   |original author = jinxiewinxie
+
   |original author = Dawn
   |original url    = {{nexus mod|191}}
+
   |original url    = https://community.playstarbound.com/threads/fluffy-dogs-other-alternative-dog-sprites-update-8-pug-time.109948/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
   |update author  = Allayna
+
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Leafeon Retexture for Cat
+
   |original name  = Fluffy Tuxedo Cat
   |original author = ImXTooNinjaxX
+
   |original author = osmiacyril
   |original url    = {{nexus mod|1673}}
+
   |original url    = {{nexus mod|850}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
   |update author  = Allayna
+
   |update author  = coldazrael
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Leah New Hair
+
   |original name  = Fluffykins' Furniture - Paintings Statues and Rugs
   |original author = CoffeeBuns
+
   |original author = Fluffykins
   |original url    = {{nexus mod|757}}
+
   |original url    = {{nexus mod|2003}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
   |update author  = Aquilegia
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Less Creepy Marnie Sprite
+
   |original name  = Four Crystal Paths Retextures
   |original author = CassandraRose
+
   |original author = stupiddullahans
   |original url    = {{nexus mod|1349}}
+
   |original url    = {{nexus mod|1305}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358525
   |update author  = D.Grey
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lewd Bachelorettes
+
   |original name  = Fruit Trees Reshaped
   |original author = AirplaneRandy
+
   |original author = Chisami
   |original url    = https://community.playstarbound.com/threads/lewd-bachelorettes-portrait-mod-buxom-haley-added.108210/
+
   |original url    = https://community.playstarbound.com/threads/fruit-trees-reshaped-v2-addition.114556/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287084
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264457
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Linus With Clothes
+
   |original name  = Fruit Trees with Signs
   |original author = Goodledoodoo
+
   |original author = Develsaa
   |original url    = {{nexus mod|1512}}
+
   |original url    = {{nexus mod|99}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
   |update author  = paradigmnomad
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lolia Fashion Bachelorettes
+
   |original name  = Furniture Redone
   |original author = Royalyspooky
+
   |original author = peachitto
   |original url    = https://community.playstarbound.com/threads/lolita-fashion-bachelorettes.128214/
+
   |original url    = {{nexus mod|1058}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267529
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357809
   |update author  = paradigmnomad
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Longhair Cat Replacement
+
   |original name  = F-SV No Bowlegs
   |original author = Korokos
+
   |original author = Flumme
   |original url    = https://community.playstarbound.com/threads/longhair-cats-four-new-colors-4-15.111316/
+
   |original url    = {{nexus mod|1500}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3263910
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303842
   |update author  = paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Long Elf Ears Recolours
+
   |original name  = F-SV Stable - Seasonal and White
   |original author = ScalesofGrey
+
   |original author = Flumme
   |original url    = {{nexus mod|1088}}
+
   |original url    = {{nexus mod|1467}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289172
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-94#post-3326671
   |update author  = staarfruit
+
   |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Luna Cat
+
   |original name  = Garden Hedge
   |original author = PoshPossum
+
   |original author = ohrabbit
   |original url    = {{nexus mod|2157}}
+
   |original url    = {{nexus mod|168}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304232
   |update author  = kngermanotta
+
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lunatic Farm Map
+
   |original name  = Genderbent Bachelorettes
   |original author = Lunatic
+
   |original author = Lechet AKA yuiidragon
   |original url    = {{nexus mod|1408}}
+
   |original url    = {{nexus mod|199}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
   |update author  = SuperElement & Allayna
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = LTTPBuildingsreplacer
+
   |original name  = German Shepard Bundle Mod (No Cursors)
   |original author = JazzMinK
+
   |original author = Beroin/deadduch
   |original url    = {{nexus mod|1284}}
+
   |original url    = {{nexus mod|54}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-19#post-3283067
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-7#post-3274843
   |update author  = m2pt5/Emtu
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Madeline's Recolors
+
   |original name  = GhostyTea's Cute Hats
   |original author = madelinealex
+
   |original author = GhostyTea
   |original url    = https://community.playstarbound.com/threads/madelines-recolors-farmhouses-barns-coops-more-updated-10-23-greenhouse-matches-for-v1-1.110123/
+
   |original url    = {{nexus mod|1754}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-46#post-3300463
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299595
 
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Magica Trees
+
   |original name  = Gift of Gab - Marriage Candidate Edition
   |original author = ERRORcauser
+
   |original author = SunnyBird
   |original url    = {{nexus mod|1211}}
+
   |original url    = {{nexus mod|3074}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
   |update author  = D.Grey
+
   |update author  = uwuchiha
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Makeup as Accessories
+
   |original name  = Glaceon Cat
   |original author = Jinxiewinxie
+
   |original author = Halfwheat
   |original url    = {{nexus mod|183}}
+
   |original url    = {{nexus mod|1788}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289541
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = junali
+
   |update author  = Allayna
   |update version  = 1.1
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marriage Dialogue Expansion - Eilliot
+
   |original name  = Glitched Burger - Furniture Overhaul
   |original author = Sabreene
+
   |original author = Boneberry
   |original url    = {{nexus mod|1595}}
+
   |original url    = https://community.playstarbound.com/threads/glitched-burger-furniture-overhaul.126892/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303283
   |update author  = ayahimew
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marriage Dialogue Mod for Haley
+
   |original name  = Gnarly's Farm Expansion
   |original author = shann713
+
   |original author = GnarlyJaspian
   |original url    = {{nexus mod|1677}}
+
   |original url    = {{nexus mod|1187}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329807
   |update author  = flameofthenight
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.3.2-unofficial.minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marshmallow Unicorn
+
   |original name  = Gnome Hat's Recolor
   |original author = jigajang
+
   |original author = Oak
   |original url    = https://community.playstarbound.com/resources/marshmallow-unicorn.3720/
+
   |original url    = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302646
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
   |update author  = Ches713
+
   |update author  = Oak
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marshmallow Unicorn (Alternative)
+
   |original name  = Goat Replacement
   |original author = summonercat
+
   |original author = ApproachCautiously
   |original url    = https://community.playstarbound.com/threads/marshmallow-unicorn.116854/#post-3134876
+
   |original url    = {{nexus mod|185}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = paradigmnomad
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Maru Replacer - earlier development version
+
   |original name  = Goat with Horns
   |original author = Thoroughly
+
   |original author = Develsaa
   |original url    = {{nexus mod|29}}
+
   |original url    = {{nexus mod|25}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285090
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = Allayna
+
   |update author  = Marigolden
   |update version  = 1.2
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Matching Maru Sprite (Villager Anime Portraits)
+
   |original name  = Gold Star Portrait Overhaul
   |original author = CassandraRose
+
   |original author = Lorshar
   |original url    = {{nexus mod|1453}}
+
   |original url    = {{nexus mod|2232}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322170
   |update author  = D.Grey
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Matching Slime Hutch
+
   |original name  = gotama portraits
   |original author = SlushieSlowpoke
+
   |original author = gotama
   |original url    = {{nexus mod|111}}
+
   |original url    = {{nexus mod|975}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-75#post-3311351
   |update author  = MouseyPounds
+
   |update author  = Rubecula
   |update version  = 1.0-Final
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MCMC's Portrait Mod
+
   |original name  = gotama's Portraits MOD 2
   |original author = MCMC
+
   |original author = gotama
   |original url    = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/
+
   |original url    = {{nexus mod|1221}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/page-11#post-3288717
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-100#post-3332737
   |update author  = keodau27
+
   |update author  = netish
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Medieval Traditional Hats
+
   |original name  = Gotama's Scarecrow and Hats Mod
   |original author = LemonEX
+
   |original author = gomatamanyann
   |original url    = https://community.playstarbound.com/threads/medieval-traditional-hats-replacing.110803/
+
   |original url    = {{nexus mod|1314}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301734
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
   |update author  = Mopsy
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mew - Cat Replacer
+
   |original name  = Gothish Hat Recolors
   |original author = 00Strange00
+
   |original author = GoddessOfThieves
   |original url    = {{nexus mod|477}}
+
   |original url    = {{nexus mod|194}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343178
   |update author  = Allayna
+
   |update author  = Dede_Bug
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mimikyu - Cat Dog Replacer
+
   |original name  = Grass Path for Every Season
   |original author = ChiChain and SihaRakhet
+
   |original author = MiaEmilia
   |original url    = {{nexus mod|1246}}
+
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
   |update author  = Allayna
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Missy's Shirts
+
   |original name  = Gravel Path Fix Mod
   |original author = MissyDiabolical
+
   |original author = Yunix
   |original url    = {{nexus mod|1523}}
+
   |original url    = {{nexus mod|51}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303956
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = Kuriiyo & mukamii
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's and Eemie's Butterflies (1.3)
+
   |original name  = Green Community Center
   |original author = Mi/Campanulamis & Eemie
+
   |original author = Opalie
   |original url    = {{nexus mod|1111}}
+
   |original url    = {{nexus mod|1242}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
   |update author  = Oak
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Bathroom Recolours
+
   |original name  = Grumpy Cat
   |original author = Mi/Campanulamis
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|1036}}
+
   |original url    = {{nexus mod|213}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3285521
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = MouseyPounds
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Fireplace (1.3)
+
   |original name  = Gunther Recolour
   |original author = Mi/Campanulamis
+
   |original author = Ylrien
   |original url    = {{nexus mod|1024}}
+
   |original url    = {{nexus mod|1637}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273636
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = Seyph
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Classy Victorian interior set inspired by eemie
+
   |original name  = Gus into Wendy
   |original author = Mi/Campanulamis
+
   |original author = bajel
   |original url    = {{nexus mod|1074}}
+
   |original url    = {{nexus mod|2605}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275117
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308320
   |update author  = hwayunhae
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Monster Valley
+
   |original name  = Gus Refined
   |original author = Blizzriel
+
   |original author = saturn
   |original url    = {{nexus mod|2407}}
+
   |original url    = {{nexus mod|1412}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299324
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Accessible Wilderness Farm
+
   |original name  = Hairstyles recolored and a new Hairstyle Update
   |original author = gobbldygook
+
   |original author = Alicedafox
   |original url    = {{nexus mod|603}}
+
   |original url    = {{nexus mod|1103}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287303
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278565
   |update author  = junali
+
   |update author  = ayahimew & Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Accurate Dwarf
+
   |original name  = Haley/Penny/Leah Expanded Dialogue
   |original author = spacedoggity
+
   |original author = KThxBye910
   |original url    = {{nexus mod|1470}}
+
   |original url    = {{chucklefish mod|4697}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = MouseyPounds
+
   |update author  = flameofthenight
   |update version  = 1.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Galactic Galaxy Swords
+
   |original name  = Haley and Penny Universal Love
   |original author = Alliehxxx
+
   |original author = LisaWolf
   |original url    = {{nexus mod|2530}}
+
   |original url    = {{nexus mod|1600}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298188
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341274
   |update author  = Arkanto
+
   |update author  = Dede_Bug
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MunchItValency's Starter Pokemon
+
   |original name  = Haley as Vampire Revamp
   |original author = MunchItValency
+
   |original author = SextingWithSirens
   |original url    = {{nexus mod|2151}}
+
   |original url    = {{nexus mod|1572}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-98#post-73276
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mushroom Tree Growth Re-Texture
+
   |original name  = Haley Off-The-Shoulder Dress
   |original author = burtron
+
   |original author = Ahrimhan
   |original url    = {{nexus mod|338}}
+
   |original url    = {{nexus mod|1007}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
   |update author  = D.Grey
+
   |update author  = Amx
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mushroom Tree Re-Texture
+
   |original name  = Haley Reskin
   |original author = allanbachti
+
   |original author = magimatica
   |original url    = {{nexus mod|1729}}
+
   |original url    = {{nexus mod|1132}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
   |update author  = D.Grey
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MysticTempest's Furniture Mod
+
   |original name  = Haley Skirt Recolour
   |original author = MysticTempest
+
   |original author = Nyxcat
   |original url    = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
+
   |original url    = {{nexus mod|1039}}
   |update name    = official update
+
  |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
+
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346589
   |update author  = MysticTempest
+
  |update author  = Dede_Bug
   |update version  = 1.3.0
+
  |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
 
{{/xnb
   |original name  = MysticTempest's Tea Mod
+
   |original name  = Happier Pig with New Eyes
   |original author = MysticTempest
+
   |original author = Develsaa
   |original url    = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
+
   |original url    = {{nexus mod|26}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
   |update author  = MysticTempest
+
   |update author  = Allayna
   |update version  = 1.0.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nerdy Hot Maru
+
   |original name  = Hardmode
   |original author = tolerdesigns
+
   |original author = RamenYum
   |original url    = {{nexus mod|1029}}
+
   |original url    = {{nexus mod|714}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346590
   |update author  = MouseyPounds
+
   |update author  = Dede_Bug
   |update version  = 1.2
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New and Improved Hairstyles
+
   |original name  = Harvest Moon Wizard Replacement
   |original author = Chrysanthe
+
   |original author = TheMainFlamingoose
   |original url    = https://community.playstarbound.com/threads/new-and-improved-hairstyles.112097/
+
   |original url    = {{nexus mod|4060}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273781
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-123#post-3354839
   |update author  = D.Grey
+
   |update author  = art17
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Cow Breeds
+
   |original name  = Harvey Personality Mod (full)
   |original author = Zhuria
+
   |original author = woosh0
   |original url    = https://community.playstarbound.com/threads/new-cow-breeds.110272/
+
   |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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323222
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Handsome Elliott Portrait and Sprite
+
   |original name  = Hay Silo
   |original author = sabreene
+
   |original author = Flor3nce2456
   |original url    = {{nexus mod|1676}}
+
   |original url    = {{nexus mod|1519}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
 
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Portraits Mod aka 微调立绘美化2.0 (Portrait Mod)
+
   |original name  = Heyo! No Mayo!
   |original author = ???
+
   |original author = ProperPunctuation
   |original url    = http://bbs.3dmgame.com/forum.php?mod=viewthread&tid=5058948
+
   |original url    = https://community.playstarbound.com/threads/heyo-no-mayo.141686/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-72#post-3308973
   |update author  = Pak_RT & D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Rabbit Sprites and Recolours
+
   |original name  = Highland Cattle
   |original author = Zhuria
+
   |original author = ClockworkZombe
   |original url    = {{nexus mod|112}}
+
   |original url    = {{nexus mod|3157}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
   |update author  = D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Skintones
+
   |original name  = Hill-Top Forest Map
   |original author = prettypinktardis
+
   |original author = Minnue
   |original url    = {{nexus mod|1231}}
+
   |original url    = {{nexus mod|601}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275679
   |update author  = tenthousandcats
+
   |update author  = ChiiBee
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Spouse Rooms
+
   |original name  = Hispanic Alex
   |original author = abra700
+
   |original author = AllegedMexican
   |original url    = {{nexus mod|713}}
+
   |original url    = {{nexus mod|846}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nicer Villagers, Flirty Bachelors
+
   |original name  = Hispanic George
   |original author = Kagurahime
+
   |original author = AllegedMexican
   |original url    = {{nexus mod|872}}
+
   |original url    = {{nexus mod|838}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
   |update author  = paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nightmare's Additional Weaponry
+
   |original name  = Hobbit Hole
   |original author = zcsnightmare
+
   |original author = LemonEX
   |original url    = {{nexus mod|393}}
+
   |original url    = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
+
   |update url      = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961/page-5#post-3268689
   |update author  = D.Grey
+
   |update author  = Pathoschild
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-pathoschild
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = No More Bowlegs
+
   |original name  = hojichas' Wallpaper and Flooring
   |original author = Chrysanthe
+
   |original author = hojichas
   |original url    = {{nexus mod|346}}
+
   |original url    = {{nexus mod|912}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259723
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
   |update author  = f4iTh
+
   |update author  = Allayna & Mitchell
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Non-Default Replacement Chickens
+
   |original name  = hojichas' Seaside Interior
   |original author = Lavapulse
+
   |original author = hojichas
   |original url    = https://community.playstarbound.com/threads/non-default-replacement-chickens-silkie-orpington-barred-rock.109826/
+
   |original url    = {{nexus mod|1189}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
   |update author  = paradigmnomad
+
   |update author  = dreamsicl
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Norisu's Cuter Goats Mod
+
   |original name  = Holsteins (White Cow)
   |original author = norisu
+
   |original author = Zhuria
   |original url    = {{nexus mod|1135}}
+
   |original url    = {{nexus mod|45}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285285
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
   |update author  = Oak
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nostalgia Abigail
+
   |original name  = Hope's Farmer Customization Mods
   |original author = Cilbas
+
   |original author = HopeWasHere
   |original url    = {{nexus mod|140}}
+
   |original url    = {{nexus mod|1008}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
   |update author  = Aquilegia
+
   |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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = NongDarn Mods Portraits
+
   |original name  = Hope's Secret Springs Cave
   |original author = NongDarn
+
   |original author = HopeWasHere
   |original url    = https://community.playstarbound.com/threads/mods-portraits-harvey-sam-sebastian-elliott-alex-by-nongdarn.111237/
+
   |original url    = {{nexus mod|1155}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300583
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = netish
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Okami Chibiterasu Pet
+
   |original name  = (NSFW) Horny Bachelors
   |original author = Dibjib
+
   |original author = Girafarig
   |original url    = {{nexus mod|152}}
+
   |original url    = {{nexus mod|791}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275462
+
   |update url      = https://www.nexusmods.com/stardewvalley/mods/2564
  |update author  = Heroic Onion
  −
  |update version  = 1.0
   
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Owl Scarecrows
+
   |original name  = Horse Edits & Recolours
   |original author = Ankokou
+
   |original author = Zhuria
   |original url    = {{nexus mod|936}}
+
   |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277776
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
   |update author  = Kuriiyo
+
   |update author  = twixstix
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pastel Furniture
+
   |original name  = Horses to Dragons/Pegasi
   |original author = BloodyJinxii
+
   |original author = Aternova
   |original url    = {{nexus mod|1705}}
+
   |original url    = https://community.playstarbound.com/threads/horses-to-dragons-pegasi-saddleless-steeds-and-hercules-pegasus.108539/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300651
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
   |update author  = Allayna
+
   |update author  = Allayna & brybryj
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pencilstab's Portraits (ALL PORTRAITS COMPLETED)
+
   |original name  = Horse to Mule
   |original author = Pencilstab
+
   |original author = magimatica
   |original url    = {{nexus mod|2351}}
+
   |original url    = {{nexus mod|1181}}
   |update name    = official update
+
   |update name    = unofficial update
   |update url      = {{nexus mod|2351}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
   |update author  = Pencilstab
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Expanded
+
   |original name  = Horse to Vespa Scooter + Garage
   |original author = Wolvenlight
+
   |original author = Pi.Curious
   |original url    = {{nexus mod|1372}}
+
   |original url    = https://community.playstarbound.com/threads/horse-to-vespa-scooter-garage-joja-scooter-added.110212/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275828
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75931
   |update author  = flameofthenight
+
   |update author  = phomaique
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Expanded Marriage Dialogue
+
   |original name  = House (Final Upgrade) Color Mod
   |original author = catacoon
+
   |original author = MrMcK
   |original url    = {{nexus mod|1275}}
+
   |original url    = {{nexus mod|334}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
   |update author  = flameofthenight
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 0.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Relationship (Villager Part Only)
+
   |original name  = House Remodel - Interior Design
   |original author = NicolasNSane
+
   |original author = Minakie
   |original url    = {{nexus mod|1568}}
+
   |original url    = {{nexus mod|753}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = flameofthenight
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pink Chickens
+
   |original name  = Hudson Valley Buildings
   |original author = bubblestormx
+
   |original author = oomps62, magimatica and endohare
   |original url    = {{nexus mod|465}}
+
   |original url    = {{nexus mod|1478}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-17#post-3280851
+
   |update url      = {{nexus mod|2110}}
   |update author  = acornfaerie
+
   |update author  = oomps62
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Porcelaine's Wizard - Portrait and Sprite
+
   |original name  = Huge Sheds Redux
   |original author = Porcelaine
+
   |original author = Boldrin
   |original url    = {{nexus mod|1940}}
+
   |original url    = {{nexus mod|1662}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-33#post-3293999
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321937
   |update author  = Mukamii
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Portrait Accurate Alex
+
   |original name  = Immersive (F) Marriage Candidate Overhaul
   |original author = iKeychain
+
   |original author = Chickenkila
   |original url    = {{nexus mod|349}}
+
   |original url    = {{nexus mod|33}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = Allayna & Amx
+
   |update author  = Marigolden
   |update version  = 1.2
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Primitive Artisan Equipment
+
   |original name  = Immersive Marriage - Abigail
   |original author = Ankokou
+
   |original author = robolink
   |original url    = {{nexus mod|940}}
+
   |original url    = {{nexus mod|33}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-57#post-3304133
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271485
   |update author  = kalikars & junali
+
   |update author  = D.Grey
   |update version  = 1.0.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rabbit's Foot to Usagi Mochi
+
   |original name  = Improved Dirt and Recolored Grass for Fall (English Only)
   |original author = gelatinveins
+
   |original author = Relenanator
   |original url    = {{nexus mod|1108}}
+
   |original url    = {{nexus mod|1105}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299425
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-61#post-3305023
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Ragdoll Cat Replacements
+
   |original name  = Improved Penny Vanilla Portrait
   |original author = peroxidewren
+
   |original author = G The Generous
   |original url    = https://community.playstarbound.com/threads/ragdoll-cats-pet-replacements.130437/
+
   |original url    = {{nexus mod|1498}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3264159
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Kuriiyo
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Realistic Animal Replacements
+
   |original name  = Improved Shed Mod
   |original author = Crucifigo
+
   |original author = wintrparkgrl
   |original url    = https://community.playstarbound.com/threads/new-free-to-edit-wips-crucifigos-livestock-semi-realistic-animal-replacers.109480/
+
   |original url    = https://www.reddit.com/r/StardewValley/comments/55x9hj/improved_shed_mod/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259729
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258682
   |update author  = paradigmnomad
+
   |update author  = ShneekeyTheLost
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Real Life Horses
+
   |original name  = Introducing JojaMart and Shane: A Custom Cutscene Mod
   |original author = Minakie
+
   |original author = IronZelly
   |original url    = {{nexus mod|759}}
+
   |original url    = https://community.playstarbound.com/threads/introducing-jojamart-and-shane-a-custom-cutscene-mod.129338/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267236
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-80#post-3317020
   |update author  = jhunichi
+
   |update author  = springacres
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Recolored Luau and Moonlight Jellies Candle Boats to match the Beach and Desert Recolors Mod - combined
+
   |original name  = Ira Yume100 - Harvey
   |original author = Sabreene
+
   |original author = Minrisa
   |original url    = {{nexus mod|1701}}
+
   |original url    = {{nexus mod|2254}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322224
   |update author  = waftwaffle
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}{{/xnb
 +
  |original name  = Iridium Ore Galaxy Horse
 +
  |original author = PecuniamArt
 +
  |original url    = {{nexus mod|1006}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301837
 +
  |update author  = Ches713
 +
  |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Red Holsteins (Brown Cow)
+
   |original name  = Item Overhaul
   |original author = Zhuria
+
   |original author = Boneberry
   |original url    = {{nexus mod|47}}
+
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3300985
   |update author  = D.Grey
+
   |update author  = Allayna & paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Refined Bachelors Portrait Mod
+
   |original name  = JAC'd Greenhouse Extended
   |original author = Chrysanthe
+
   |original author = Plutey/Androxilogin
   |original url    = {{nexus mod|938}}
+
   |original url    = {{nexus mod|739}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
   |update author  = paradigmnomad & D.Grey
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Refined Abigail, Emily and Maru Portraits
+
   |original name  = JAC'd Sheds
   |original author = Chrysanthe
+
   |original author = Plutey/Androxilogin
   |original url    = {{nexus mod|965}}
+
   |original url    = {{nexus mod|681}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
   |update author  = Amx
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Remove That Damn Rock
+
   |original name  = Jamie's Balanced Greenhouse
   |original author = Androxilogin
+
   |original author = JamieMage2005
   |original url    = {{nexus mod|384}}
+
   |original url    = {{nexus mod|1078}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
   |update author  = OkikuMew
+
   |update author  = Shalassa
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rikuo's Character Portrait
+
   |original name  = JG Demitrus in shipping box
   |original author = Rikuo
+
   |original author = Jeremiah Gottwald AKA JGottwald
   |original url    = {{nexus mod|231}}
+
   |original url    = {{nexus mod|65}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-25#post-3286931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
   |update author  = paradigmnomad
+
   |update author  = Marigolden
   |update version  = 4.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rocky Junimo Hut
+
   |original name  = Jersey Cow
   |original author = Gweniaczek
+
   |original author = magimatica
   |original url    = {{nexus mod|1870}}
+
   |original url    = {{nexus mod|861}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304718
   |update author  = paradigmnomad
+
   |update author  = Ches713
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Roosters (Blue Chicken Replacement)
+
   |original name  = Jodi and Vincent - Sprites and Portraits Remastered Mod
   |original author = Zhuria
+
   |original author = Shadowfire1223
   |original url    = https://community.playstarbound.com/threads/roosters.125933/
+
   |original url    = {{nexus mod|1555}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262895
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
   |update author  = paradigmnomad
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rose's Interior
+
   |original name  = JumJum Jr.
   |original author = Roserish
+
   |original author = ProJared
   |original url    = {{nexus mod|2715}}
+
   |original url    = {{nexus mod|197}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304486
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Trees Only)
+
   |original name  = Jungle Temple
   |original author = Ruevian
+
   |original author = UlithiumDragon
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
+
   |original url    = {{nexus mod|1014}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3301953
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299529
   |update author  = sunnrock
+
   |update author  = Allayna
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Fences and Craftables)
+
   |original name  = Junimo Artifact Digspots
   |original author = Ruevian
+
   |original author = Seismothesaurus
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
+
   |original url    = {{nexus mod|1321}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302300
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
   |update author  = coldazrael
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rusty Trough Fix
+
   |original name  = Junimo Horse
   |original author = Zhuria
+
   |original author = monteso
   |original url    = {{nexus mod|37}}
+
   |original url    = {{nexus mod|700}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = OkikuMew
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sailor Moon Wands
+
   |original name  = Junimos to Totoros
   |original author = kumarisuchan
+
   |original author = magimatica
   |original url    = {{nexus mod|1687}}
+
   |original url    = {{nexus mod|867}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299332
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = Allayna
+
   |update author  = coldazrael
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam - New Hair and Jacket
+
   |original name  = Kal's Marriage Candidates Portraits
   |original author = ktruong
+
   |original author = kal621owo621_Snakebite
   |original url    = {{nexus mod|898}}
+
   |original url    = {{nexus mod|2346}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
   |update author  = D.Grey
+
   |update author  = Flyff
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam Gets a Makeover
+
   |original name  = Karina's Long Hair
   |original author = Tyrian
+
   |original author = Karina
   |original url    = {{nexus mod|1694}}
+
   |original url    = {{nexus mod|512}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-33#post-3293999
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = Mukamii
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam's Hair Makeover
+
   |original name  = Karmylla's Cellar Edit
   |original author = Chrysanthe
+
   |original author = Karmylla
   |original url    = {{nexus mod|360}}
+
   |original url    = {{nexus mod|1148}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = {{nexus mod|1148}}
   |update author  = OkikuMew
+
   |update author  = Karmylla
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Saturnspace's All Villagers Portraits Mod
+
   |original name  = Karmylla's Spouse Room Edits
   |original author = Saturnspace
+
   |original author = Karmylla
   |original url    = {{nexus mod|614}}
+
   |original url    = {{nexus mod|1356}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/attachments/cp-saturnspaces-all-villagers-portraits-mod-zip.206152/
+
   |update url      = {{nexus mod|1356}}
   |update author  = aaronson2012
+
   |update author  = karmylla
   |update version  = 1.0.0
+
   |update version  = 3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian - New Hair and Moto Jacket
+
   |original name  = Karna Fate - Sebastian
   |original author = ktruong
+
   |original author = Minrisa
   |original url    = {{nexus mod|877}}
+
   |original url    = {{nexus mod|2292}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322224
   |update author  = paradigmnomad
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian is a Ginger (Complete Edits Only)
+
   |original name  = Kawaii Hats
   |original author = melkat7
+
   |original author = yuikami
   |original url    = {{nexus mod|561}}
+
   |original url    = {{nexus mod|64}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3302982
   |update author  = D.Grey
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 0.1  
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Foresty Farm Buildings
+
   |original name  = Kero Cat Replacement - Cardcaptor Sakura
   |original author = miizuki1512
+
   |original author = Walpi-chan
   |original url    = {{nexus mod|1502}}
+
   |original url    = {{nexus mod|1028}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
   |update author  = hatmouse
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Vanilla Buildings
+
   |original name  = Kimberly's witch kitchen.Bed.Bathroom.Crib.
   |original author = magimatica
+
   |original author = Kimberly
   |original url    = {{nexus mod|928}}
+
   |original url    = {{nexus mod|1375}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-112#post-3340424
   |update author  = D.Grey
+
   |update author  = mouseypounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Gold Clock
+
   |original name  = Kitchen Nook for 1st Farmhouse
   |original author = Endohare
+
   |original author = Allayna
   |original url    = {{nexus mod|1771}}
+
   |original url    = {{nexus mod|1668}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299515
+
   |update url      = {{nexus mod|1668}}
   |update author  = Arkanto
+
   |update author  = Allayna
   |update version  = 1.1
+
   |update version  = 2.6
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian Dialogue Overhaul
+
   |original name  = Kitty Scarecrow Replacments
   |original author = casualkira
+
   |original author = jinxiewinxie
   |original url    = {{nexus mod|1505}}
+
   |original url    = {{nexus mod|191}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287117
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
   |update author  = paradigmnomad
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Secret of Evermore Prehistoric Dog
+
   |original name  = Kingdom Hearts Sea Salt Ice Cream
   |original author = Skyhacker
+
   |original author = Dom AKA domfred908
   |original url    = {{nexus mod|347}}
+
   |original url    = {{nexus mod|315}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
   |update author  = Allayna
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 0.9.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shirtless Alex
+
   |original name  = Korea Retro
   |original author = bluestarkiller
+
   |original author = standlaid1
   |original url    = {{nexus mod|1186}}
+
   |original url    = {{nexus mod|5287}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-48#post-29801
   |update author  = OkikuMew
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shoe Color Replacement
+
   |original name  = Leafeon Retexture for Cat
   |original author = irowirow
+
   |original author = ImXTooNinjaxX
   |original url    = {{nexus mod|330}}
+
   |original url    = {{nexus mod|1673}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = D.Grey, Oak
+
   |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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Short Haired Haley
+
   |original name  = Less Creepy Marnie Sprite
   |original author = Zoragonn101
+
   |original author = CassandraRose
   |original url    = {{nexus mod|1620}}
+
   |original url    = {{nexus mod|1349}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shorter Haired Sebastian
+
   |original name  = let 's cafe
   |original author = Chrysanthe
+
   |original author = momoki
   |original url    = {{nexus mod|159}}
+
   |original url    = {{nexus mod|10546}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70199
   |update author  = OkikuMew
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shorts for Ladies
+
   |original name  = Lewd Bachelorettes (Buxom)
   |original author = Meevers
+
   |original author = AirplaneRandy
   |original url    = {{nexus mod|225}}
+
   |original url    = https://community.playstarbound.com/threads/lewd-bachelorettes-portrait-mod-buxom-haley-added.108210/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-131#post-3369629
   |update author  = junali
+
   |update author  = UberMann
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slate Shed Recolor
+
   |original name  = Lewis to Mayor Thomas Character Overhaul
   |original author = Asunai
+
   |original author = Budzilla
   |original url    = {{nexus mod|2540}}
+
   |original url    = {{nexus mod|73}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298309
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = Arkanto
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Siberian Huskey Dog Replacement
+
   |original name  = Linus is a potato From minecraft
   |original author = Joules
+
   |original author = laser5mw
   |original url    = {{nexus mod|1855}}
+
   |original url    = {{nexus mod|491}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262682
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-73588
   |update author  = TimeWandrer
+
   |update author  = phomaique
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-phomaique
}}
+
}}
 
{{/xnb
 
{{/xnb
   |original name  = Silo Replacement
+
   |original name  = Linus With Clothes
   |original author = ???
+
   |original author = Goodledoodoo
   |original url    = ???
+
   |original url    = {{nexus mod|1512}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
   |update author  = twixstix
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slightly Cuter Character Sprites
+
   |original name  = Lolia Fashion Bachelorettes
   |original author = Poltergeister
+
   |original author = Royalyspooky
   |original url    = {{nexus mod|1437}}
+
   |original url    = https://community.playstarbound.com/threads/lolita-fashion-bachelorettes.128214/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = {{nexus mod|2194}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267529
   |update author  = HanFox
+
   |update author  = paradigmnomad
   |update version  = 1.8
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slime Animals
+
   |original name  = Longhair Cat Replacement
   |original author = Sabishi1985
+
   |original author = Korokos
   |original url    = https://community.playstarbound.com/threads/slime-animals-last-update-09-10-2016.110931/
+
   |original url    = https://community.playstarbound.com/threads/longhair-cats-four-new-colors-4-15.111316/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258724
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3263910
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slime Cute Kitty Cat Retexture
+
   |original name  = Long Elf Ears Recolours
   |original author = hisameartwork
+
   |original author = ScalesofGrey
   |original url    = {{nexus mod|2058}}
+
   |original url    = {{nexus mod|1088}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277759
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289172
   |update author  = Kuriiyo
+
   |update author  = staarfruit
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Skin Colours Tweaked
+
   |original name  = Luna Cat
   |original author = MissyDiabolical
+
   |original author = PoshPossum
   |original url    = {{nexus mod|1506}}
+
   |original url    = {{nexus mod|2157}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300524
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
   |update author  = Isalami
+
   |update author  = kngermanotta
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Small Farm
+
   |original name  = Lunatic Farm Map
   |original author = HelleboreHel
+
   |original author = Lunatic
   |original url    = {{nexus mod|1518}}
+
   |original url    = {{nexus mod|1408}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-35#post-3296405
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
   |update author  = Allayna
+
   |update author  = SuperElement & Allayna
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Furniture
+
   |original name  = LTTPBuildingsreplacer
   |original author = Serpentwined
+
   |original author = JazzMinK
   |original url    = {{nexus mod|227}}
+
   |original url    = {{nexus mod|1284}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-19#post-3283067
   |update author  = coldazrael
+
   |update author  = m2pt5/Emtu
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Kitchen, Bed and Fireplace
+
   |original name  = Madeline's Farmhouse and Farm Building Recolors
   |original author = Serpentwined
+
   |original author = Madeline
   |original url    = {{nexus mod|155}}
+
   |original url    = {{nexus mod|198}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
   |update author  = coldazrael
+
   |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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Wallpapers and Floorings
+
   |original name  = Make Krobus Gaster
   |original author = Serpentwined
+
   |original author = DiStri
   |original url    = {{nexus mod|171}}
+
   |original url    = {{nexus mod|1201}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302537
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-2#post-39785
   |update author  = coldazrael
+
   |update author  = Techy-Jaden
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spouse Rooms Redesigned
+
   |original name  = Makeup as Accessories
   |original author = endermaryn
+
   |original author = Jinxiewinxie
   |original url    = {{nexus mod|828}}
+
   |original url    = {{nexus mod|183}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260091
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289541
   |update author  = Fyn
+
   |update author  = junali
   |update version  = 6.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stable Replacement
+
   |original name  = Make Love With Shane (Works with Co-op Mode)
   |original author = FrauHaselmaus
+
   |original author = Kagurahime
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
+
   |original url    = {{nexus mod|917}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-129#post-3362721
   |update author  = kngermanotta
+
   |update author  = SamelaG
   |update version  = 1.0
+
   |update version  = 1.0.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Lottery Letters
+
   |original name  = Marnie Edit
   |original author = Jokerine
+
   |original author = pipmimi
   |original url    = {{nexus mod|335}}
+
   |original url    = {{nexus mod|2455}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300144
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347432
   |update author  = brybryj
+
   |update author  = Ches713
   |update version  = 2.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Shortcuts - Saloon and Hospital Bypass
+
   |original name  = Marnie Romance
   |original author = scrptrx
+
   |original author = MrValuable
   |original url    = {{nexus mod|510}}
+
   |original url    = https://stardew-valley.org/marnie-romance-mod/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343163
   |update author  = OkikuMew
+
   |update author  = vadie
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Valley Senbby and Sam
+
   |original name  = Marriage Dialogue Expansion - Eilliot
   |original author = Kikii_Saam
+
   |original author = Sabreene
   |original url    = {{nexus mod|2538}}
+
   |original url    = {{nexus mod|1595}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
   |update author  = coldazrael
+
   |update author  = ayahimew
   |update version  = 1.3
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = StardewValley Anime Mods
+
   |original name  = Marriage Dialogue Mod for Haley
   |original author = OhoDavi
+
   |original author = shann713
   |original url    = {{nexus mod|1839}}
+
   |original url    = {{nexus mod|1677}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = coldazrael
+
   |update author  = flameofthenight
   |update version  = 0.3
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = StardewValley_Girl-byAdarin
+
   |original name  = Marshmallow Unicorn
   |original author = AdarinSinner
+
   |original author = jigajang
   |original url    = {{nexus mod|474}}
+
   |original url    = {{chucklefish mod|3720}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = {{nexus mod|2165}}
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302646
   |update author  = ZidanReign
+
   |update author  = Ches713
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Starry Sky Interface
+
   |original name  = Marshmallow Unicorn (Alternative)
   |original author = Walpi-chan
+
   |original author = summonercat
   |original url    = {{nexus mod|1310}}
+
   |original url    = https://community.playstarbound.com/threads/marshmallow-unicorn.116854/#post-3134876
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273486
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
   |update author  = Rosalie
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Studio Ghibli Re-Textures (Scarecrows)
+
   |original name  = Maru Replacer - earlier development version
   |original author = Crazy_Leen
+
   |original author = Thoroughly
   |original url    = https://community.playstarbound.com/threads/studio-ghibli-re-textures.109939/
+
   |original url    = {{nexus mod|29}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275846
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = MitcheII
+
   |update author  = coldazrael & Allayna
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Suffolk Sheep Recolor
+
   |original name  = Maru Portrait's Retexture
   |original author = The13thBlackCat
+
   |original author = HarinBAE
   |original url    = {{nexus mod|1076}}
+
   |original url    = {{nexus mod|1578}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Swans and Dodos (excludes Aptonoth)
+
   |original name  = Matching Maru Sprite (Villager Anime Portraits)
   |original author = Kitsutsune
+
   |original author = CassandraRose
   |original url    = https://community.playstarbound.com/threads/swans-and-dodos-and-aptonoth.111758/
+
   |original url    = {{nexus mod|1453}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259911
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
   |update author  = paradigmnomad
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Greenhouse
+
   |original name  = Matching Slime Hutch
   |original author = Various
+
   |original author = SlushieSlowpoke
   |original url    = https://community.playstarbound.com/threads/sweet-greenhouse-your-greenhouse-more-sweety.113426/
+
   |original url    = {{nexus mod|111}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = Oak
+
   |update author  = MouseyPounds
   |update version  = 1.0
+
   |update version  = 1.0-Final
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Talking Sam
+
   |original name  = MCMC's Portrait Mod
   |original author = Kagurahime
+
   |original author = MCMC
   |original url    = {{nexus mod|890}}
+
   |original url    = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
+
   |update url      = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/page-11#post-3288717
   |update author  = paradigmnomad
+
   |update author  = keodau27
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Talking Sebastian
+
   |original name  = Medieval Traditional Hats
   |original author = Kagurahime
+
   |original author = LemonEX
   |original url    = {{nexus mod|929}}
+
   |original url    = https://community.playstarbound.com/threads/medieval-traditional-hats-replacing.110803/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301734
   |update author  = paradigmnomad
+
   |update author  = Mopsy
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Taco Bones: Item+Crop graphics
+
   |original name  = Melons to Watermelons
   |original author = Boneberry
+
   |original author = zynonia
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
+
   |original url    = {{nexus mod|1397}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284392
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305179
   |update author  = acornfaerie
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tan and Green Velociraptor
+
   |original name  = Memory Farm - Farm Map Layouts
   |original author = zcsnightmare
+
   |original author = Attitude Rains
   |original url    = {{nexus mod|251}}
+
   |original url    = {{nexus mod|1703}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299950
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-87#post-3323318
   |update author  = brybryj & Allayna
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tego's Less Vibrant Grass and Dirt
+
   |original name  = Metal Worm Bin
   |original author = Various
+
   |original author = vkunicorn
   |original url    = https://www.nexusmods.com/stardewvalley/mods/244/
+
   |original url    = {{nexus mod|2675}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = http://www.mediafire.com/file/7a270vd3ci08azz/%5BCP%5D+Less+Vibrant.zip
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75923
   |update author  = Oak
+
   |update author  = phomaique
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tiny Tree Tappers
+
   |original name  = Mew - Cat Replacer
   |original author = kallisto
+
   |original author = 00Strange00
   |original url    = {{nexus mod|1679}}
+
   |original url    = {{nexus mod|477}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = coldazrael
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Togepi Cat Replacement
+
   |original name  = Mimikyu - Cat Dog Replacer
   |original author = CrimsonY _Alreadytaken on this site apparently_
+
   |original author = ChiChain and SihaRakhet
   |original url    = {{nexus mod|1234}}
+
   |original url    = {{nexus mod|1246}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Cat (Red Panda)
+
   |original name  = Minecraft Sword Styles
   |original author = Tokiri
+
   |original author = DarkKassanova
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|160}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-35#post-3295747
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Astartez
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Dog (Fox)
+
   |original name  = Mint Kiss Furniture
   |original author = Tokiri
+
   |original author = Ribbonain
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|619}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262199
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
   |update author  = magicalgirl44
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Horse (Ridable wolf)
+
   |original name  = Missy's Shirts
   |original author = Tokiri
+
   |original author = MissyDiabolical
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|1523}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262199
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303956
   |update author  = magicalgirl44
+
   |update author  = Kuriiyo & mukamii
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tool Icon Replacement
+
   |original name  = Missy's Walls and Floors
   |original author = workingorder
+
   |original author = MissyDiabolical
   |original url    = {{nexus mod|401}}
+
   |original url    = {{nexus mod|1579}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Traditional Japanese Homes
+
   |original name  = Mi's and Eemie's Butterflies (1.3)
   |original author = honochan
+
   |original author = Mi/Campanulamis & Eemie
   |original url    = {{nexus mod|2295}}
+
   |original url    = {{nexus mod|1111}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287364/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
   |update author  = f4iTh
+
   |update author  = Oak
   |update version  = 1.0.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tweaked Penny Portrait
+
   |original name  = Mi's Bathroom Recolours
   |original author = magimatica
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|860}}
+
   |original url    = {{nexus mod|1036}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
+
   |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-51298
   |update author  = Amx
+
   |update author  = mouse
   |update version  = 1.0
+
   |update version  = 1.0.1
}}
+
}}
 
{{/xnb
 
{{/xnb
   |original name  = Wedding Dresses and Red Shirts!
+
   |original name  = Mi's Classy Victorian interior set inspired by eemie
   |original author = Hitgirl911
+
   |original author = Mi/Campanulamis
   |original url    = https://community.playstarbound.com/resources/wedding-dresses-and-red-shirts.3725/
+
   |original url    = {{nexus mod|1074}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304457
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275117
   |update author  = coldazrael
+
   |update author  = hwayunhae
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = White Water Farm
+
   |original name  = Mi's Elegant Victorian interior
   |original author = Meevers
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1293}}
+
   |original url    = {{nexus mod|1074}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275665
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-51572
   |update author  = Pathoschild
+
   |update author  = mouse
   |update version  = 1.1.1-unofficial.1-pathoschild
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = WildSpirits Pet Replacements
+
   |original name  = Mi's Fireplace (1.3)
   |original author = WildSpirits
+
   |original author = Mi/Campanulamis
   |original url    = https://community.playstarbound.com/threads/pet-replacements.107853/
+
   |original url    = {{nexus mod|1024}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271234
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273636
   |update author  = Azrax
+
   |update author  = Seyph
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vanilla Child Recolors
+
   |original name  = Mi's Framed Butterfly and Insect Displays
   |original author = bitcrushpupp
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1914}}
+
   |original url    = {{nexus mod|1065}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358847
   |update author  = Aquilegia
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vintage Menu Interface
+
   |original name  = Modern kitchen
   |original author = Mana
+
   |original author = Static Opium
   |original url    = {{nexus mod|1244}}
+
   |original url    = {{nexus mod|665}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-7669
   |update author  = dreamsicl
+
   |update author  = Sofi52
   |update version  = 1.4
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Visual Crossing Sprite Overhaul
+
   |original name  = Monster Valley
   |original author = k2sync
+
   |original author = Blizzriel
   |original url    = https://community.playstarbound.com/threads/visual-crossing-sprite-overhaul-villager-farmer-edits.142549/
+
   |original url    = {{nexus mod|2407}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/visual-crossing-sprite-overhaul-villager-farmer-edits.142549/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299324
   |update author  = paradigmnomad
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vulpix as Cat (Alolan)
+
   |original name  = Moogle Cat Replacement
   |original author = Alola Vulpix Is Life
+
   |original author = Cal
   |original url    = {{nexus mod|2302}}
+
   |original url    = {{nexus mod|382}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-44#post-3300021
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
   |update author  = Allayna
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Wee Highland Coos
+
   |original name  = Moon Meteor 달 운석 리텍스쳐
   |original author = gglacier
+
   |original author = 이얏호 ssm4031
   |original url    = {{nexus mod|60}}
+
   |original url    = https://blog.naver.com/ssm4031/221501552288
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70203
   |update author  = D.Grey
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = White Ducks
+
   |original name  = More Accessible Wilderness Farm
   |original author = Merc931
+
   |original author = gobbldygook
   |original url    = {{nexus mod|498}}
+
   |original url    = {{nexus mod|603}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287303
   |update author  = D.Grey
+
   |update author  = junali
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Winery/Brewery Retexture Mod
+
   |original name  = More Accurate Dwarf
   |original author = Dentrala & sheetcakeghost
+
   |original author = spacedoggity
   |original url    = https://community.playstarbound.com/threads/winery-brewery-retexture-mod-assets-completed.114143/page-7
+
   |original url    = {{nexus mod|1470}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-27#post-3288848
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = andiluxe
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Witch Broom and Hat
+
   |original name  = More Emo Sebastian
   |original author = strawberrymilk95
+
   |original author = Vienix
   |original url    = {{nexus mod|499}}
+
   |original url    = {{nexus mod|3104}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3290974
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
   |update author  = junali
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Witch Hats
+
   |original name  = More Galactic Galaxy Swords
   |original author = 7yrsofbadluck
+
   |original author = Alliehxxx
   |original url    = {{nexus mod|612}}
+
   |original url    = {{nexus mod|2530}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-32#post-3293417
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298188
   |update author  = mukamii
+
   |update author  = Arkanto
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Witchy Decorations
+
   |original name  = Morst-CERBERUS and SUPI
   |original author = ManaKirel
+
   |original author = QuQii/songaoyuan
   |original url    = {{nexus mod|1515}}
+
   |original url    = {{nexus mod|9904}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-56273
   |update author  = Allayna
+
   |update author  = marshallharck
   |update version  = 1.0
+
   |update version  = 1.5.4
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Witchy-Gothic Buildings
+
   |original name  = Mumps Mod
   |original author = strawberrymilk95
+
   |original author = KiraraLala
   |original url    = {{nexus mod|420}}
+
   |original url    = {{nexus mod|1730}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280803
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
   |update author  = acornfaerie
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Witchy-Gothic Interior
+
   |original name  = MunchItValency's Starter Pokemon
   |original author = strawberrymilk95
+
  |original author = MunchItValency
   |original url    = {{nexus mod|432}}
+
  |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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280803
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = acornfaerie
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Yellog's Dark Brown and Cream Colored Furniture
+
   |original name  = Mushroom Tree Growth Re-Texture
   |original author = Yewon_Nam
+
   |original author = burtron
   |original url    = {{nexus mod|2190}}
+
   |original url    = {{nexus mod|338}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303093
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
   |update author  = coldazrael, Kuriiyo & acornfaerie
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Yellog's Pink Colored Furniture
+
   |original name  = Mushroom Tree Re-Texture
   |original author = Yewon_Nam
+
   |original author = allanbachti
   |original url    = {{nexus mod|2041}}
+
   |original url    = {{nexus mod|1729}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304470
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
   |update author  = coldazrael
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Yellog's Soft Colored Furniture
+
   |original name  = Mutated Cows with 2 Heads
   |original author = Yewon_Nam
+
   |original author = StaticOpium
   |original url    = http://blog.naver.com/PostView.nhn?blogId=93_nyw&logNo=221239840686&categoryNo=22&parentCategoryNo=&from=thumbnailList
+
   |original url    = {{nexus mod|710}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304569
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Young Doctor
+
   |original name  = My Little Valley - Farming is Magic - Mane Six Ponies
   |original author = OLothoriaScrolls
+
   |original author = Salendola
   |original url    = {{nexus mod|1576}}
+
   |original url    = {{nexus mod|206}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302894
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.2
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Yuki's Expanded Greenhouse
+
   |original name  = MysticTempest's Furniture Mod
   |original author = YukiTsukihana
+
   |original author = MysticTempest
   |original url    = https://community.playstarbound.com/threads/yukis-expanded-greenhouse.116536/
+
   |original url    = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297797
+
   |update url      = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
   |update author  = staarfruit
+
   |update author  = MysticTempest
   |update version  = 1.0
+
   |update version  = 1.3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Yet Another Dog Mod
+
   |original name  = MysticTempest's Tea Mod
   |original author = captain kaltz+/spacesheepcaptain
+
   |original author = MysticTempest
   |original url    = {{nexus mod|1853}}
+
   |original url    = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
 
   |update name    = official update
 
   |update name    = official update
   |update url      = {{nexus mod|1853}}
+
   |update url      = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
   |update author  = Marilyst
+
   |update author  = MysticTempest
   |update version  = 1.0
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = ZeldaLTTPLifestockAnimals
+
   |original name  = Mythological Creatures: Horses
   |original author = JazzMinK
+
   |original author = MysticTempest
   |original url    = {{nexus mod|1344}}
+
   |original url    = https://community.playstarbound.com/threads/mythological-creatures-horses.109498/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-19#post-3283067
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3342165
   |update author  = m2pt5/Emtu
+
   |update author  = pepoluan
   |update version  = 1.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Zen Garden Obelisk Replacer
+
   |original name  = Nerdy Hot Maru
   |original author = monteso
+
   |original author = tolerdesigns
   |original url    = {{nexus mod|742}}
+
   |original url    = {{nexus mod|1029}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = OkikuMew
+
   |update author  = MouseyPounds
   |update version  = 0.1
+
   |update version  = 1.2
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = 코이 Girls Set (coII's Farmer Retexture)
+
   |original name  = New and Improved Hairstyles
   |original author = s2co2
+
   |original author = Chrysanthe
   |original url    = https://blog.naver.com/s2co2/221221560909
+
   |original url    = https://community.playstarbound.com/threads/new-and-improved-hairstyles.112097/
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-58#post-3304352
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273781
   |update author  = coldazrael
+
   |update author  = D.Grey
   |update version  = 1.0
+
   |update version  = 1.0
}}
+
}}
|}
+
{{/xnb
 
+
  |original name  = New Cow Breeds
==Using XNB mods==
+
  |original author = Zhuria
===Find mods===
+
  |original url    = https://community.playstarbound.com/threads/new-cow-breeds.110272/
If you're looking for mods, the [http://www.nexusmods.com/stardewvalley/mods/topalltime/ most popular] are a good place to start.
+
  |update name    = unofficial update
 
+
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
You can find mods in a few places:
+
  |update author  = coldazrael
{| class="wikitable"
+
  |update version  = 1.0
|-
+
}}
! site
+
{{/xnb
! description
+
  |original name  = New Dogs
|-
+
  |original author = Zhuria
| '''[http://nexusmods.com/stardewvalley/ Nexus Mods]'''
+
  |original url    = {{chucklefish mod|3496}}
| Most mods are released here.<br /><small>(Registering an account is free, just don't choose a package when you register.)</small>
+
  |update name    = unofficial update
|-
+
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
| [http://community.playstarbound.com/resources/categories/stardew-valley.22/ Chucklefish mods]
+
  |update author  = coldazrael
| Some mods are released here (most are also on Nexus).
+
  |update version  = 1.0
|-
+
}}
| [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  = New Handsome Elliott Portrait and Sprite
|}
+
  |original author = sabreene
 
+
  |original url    = {{nexus mod|1676}}
Before you download a mod...
+
  |update name    = unofficial update
* 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.
+
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
* Don't download from stardewvalleymods.net. (Mods here are usually outdated, since the site republishes mods without permission for ad revenue.)
+
  |update author  = Allayna
 
+
  |update version  = 1.0
===Install mods===
+
}}
Installation is different for each mod; check its mod description for details. But in general:
+
{{/xnb
 
+
  |original name  = New Portraits Mod aka 微调立绘美化2.0 (Portrait Mod)
# Download the XNB mod and unzip it somewhere (not in your game folder!).
+
  |original author = ???
# It should contain some <tt>.xnb</tt> files.
+
  |original url    = http://bbs.3dmgame.com/forum.php?mod=viewthread&tid=5058948
# Find your [[Modding:Game folder|game folder]].
+
  |update name    = unofficial update
# 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.
+
  |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
===Uninstall mods===
+
  |update version  = 1.0
Either restore the original files that mod replaced (hope you kept track!), or [[Modding:Player Guide/Troubleshooting#Reset your content files|reset your game files]].
+
}}
 
+
{{/xnb
==Troubleshooting==
+
  |original name  = New Rabbit Sprites and Recolours
===Reset content files===
+
  |original author = Zhuria
If you know which mod caused the problem, [[#Uninstall mods|uninstall it]].
+
  |original url    = {{nexus mod|112}}
 
+
  |update name    = unofficial update
If you're not sure, the simplest option is:
+
  |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
 +
}}
 +
|}
 +
 
 +
==Using XNB mods==
 +
===Find mods===
 +
 
 +
See [[Modding:Player_Guide/Getting_Started#Find_mods|Find mods]] on the Getting Started page.
 +
 
 +
===Install mods===
 +
Installation is different for each mod; check its mod description for details. But in general:
 +
 
 +
# Download the XNB mod and unzip it somewhere (not in your game folder!).
 +
# It should contain some <samp>.xnb</samp> files.
 +
# Find your [[Modding:Player Guide/Getting Started#Find your game folder|game folder]].
 +
# 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===
 +
Either restore the original files that mod replaced (hope you kept track!), or [[Modding:Player Guide/Troubleshooting#Reset your content files|reset your game files]].
 +
 
 +
==Troubleshooting==
 +
===Reset content files===
 +
If you know which mod caused the problem, [[#Uninstall mods|uninstall it]].
 +
 
 +
If you're not sure, the simplest option is:
 
# [[Modding:Player Guide/Troubleshooting#Reset your content files|reset your game files]];
 
# [[Modding:Player Guide/Troubleshooting#Reset your content files|reset your game files]];
 
# reinstall each XNB mod one by one;
 
# reinstall each XNB mod one by one;
Line 3,110: Line 5,709:     
[[Category:Modding]]
 
[[Category:Modding]]
 +
 +
[[de:Modding:XNB Mods]]
 +
[[es:Modding:Uso de mods XNB]]
 +
[[pt:Modificações:Usando mods XNB]]
 +
[[ru:Модификации:Использование XNB модификаций]]
 +
[[zh:模组:使用 XNB 模组]]
translators
8,404

edits