Difference between revisions of "Modding:Using XNB mods"

From Stardew Valley Wiki
Jump to navigation Jump to search
m (Adding the 3 mods I ported to the list.)
(→‎Alternatives using Content Patcher: update for new Nexus profile pages)
 
(210 intermediate revisions by 48 users not shown)
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 63: Line 63:
 
{{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.
 
{{nexus mod|1915|Content Patcher}} is a SMAPI mod that makes XNB-like changes with all the benefits of [[Modding:Content packs|SMAPI content packs]]. Many XNB mods have a Content Patcher equivalent, or have been updated unofficially to use it. Consider using these instead where available.
  
'''Modders:''' when migrating XNB mods, only use <tt>Action: Load</tt> if you actually need to replace the whole file (e.g. portrait mods). Don't use <tt>Action: Load</tt> for dialogue mods or to change a small part of a file! Always check the official mod page to see if a conversion has been officially uploaded. This list excludes mods native to Content Patcher.
+
'''Modders:'''
 +
* When migrating XNB mods, only use <samp>Action: Load</samp> if you actually need to replace the whole file (''e.g.,'' portrait mods). Don't use <samp>Action: Load</samp> for dialogue mods or to change a small part of a file!
 +
* See ''[https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/ Migrating XNB mods to Content Patcher packs]'' on the official forums for more info about creating conversions.
  
 
{| class="wikitable plainlinks sortable"
 
{| class="wikitable plainlinks sortable"
 
|-
 
|-
! Mod Name
+
! style="position: sticky; top: 0;"|Mod Name
! Original Author
+
! style="position: sticky; top: 0;"|Original Author
! Content Patcher Equivalent
+
! style="position: sticky; top: 0;"|Content Patcher Equivalent
! Links
+
! style="position: sticky; top: 0;"|Links
 
|-
 
|-
{{/xnb
 
  |original name  = 2CUTE FarmCave
 
  |original author = taintedwheat
 
  |original url    = https://community.playstarbound.com/threads/2cute-farmcave-w-legend-of-zelda-like-fairy-hotspring-also-an-underground-library-update-7-19.117897/
 
  |update name    = unofficial update
 
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299086
 
  |update author  = Allayna
 
  |update version  = 1.0
 
}}
 
 
{{/xnb
 
{{/xnb
 
   |original name  = 15x15 Greenhouse
 
   |original name  = 15x15 Greenhouse
Line 89: Line 82:
 
   |update author  = ChiiBee
 
   |update author  = ChiiBee
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 19th Century Elliott
 +
  |original author = Messias Mummo
 +
  |original url    = {{nexus mod|81}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
 +
  |update author  = Marigolden
 +
  |update version  = 1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = 2CUTE FarmCave
 +
  |original author = taintedwheat
 +
  |original url    = https://community.playstarbound.com/threads/2cute-farmcave-w-legend-of-zelda-like-fairy-hotspring-also-an-underground-library-update-7-19.117897/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/updating-mods-for-stardew-valley-1-3.142524/page-64#post-3331098
 +
  |update author  = Opalie
 +
  |update version  = 2.0.1-unofficial.1-opalie
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 97: Line 108:
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284310
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-21#post-3284310
 
   |update author  = Allayna
 
   |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = 3D-Slime Hutch
 +
  |original author = anjarpsx
 +
  |original url    = {{nexus mod|737}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-91#post-3325452
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 106: Line 126:
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3289904
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-29#post-3289904
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
  |update version  = 1.0
 
}}
 
{{/xnb
 
  |original name  = Ace's Evelyn
 
  |original author = Acerbicon
 
  |original url    = {{nexus mod|933}}
 
  |update name    = unofficial update
 
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
 
  |update author  = Aquilegia
 
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 134: Line 145:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = A Less Yellow Stardew
 +
  |original author = 19062scott and Lark the Brave
 +
  |original url    = {{nexus mod|1387}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-98#post-3330333
 +
  |update author  = minervamaga
 +
  |update version  = 1.4.1-unofficial.minervamaga
 +
}}
 +
{{/xnb
 +
  |original name  = Newly Added Sebastian Cutscene
 +
  |original author = GiosaurusStardew
 +
  |original url    = {{nexus mod|1172}}
 +
  |update name    = unofficial update
 +
  |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-14019
 +
  |update author  = LenneDalben
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 154: Line 183:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Abigail Lewd Dialogue
+
  |original name  = A Toned Down Stardew Valley
 +
  |original author = LavendarLight
 +
  |original url    = {{nexus mod|1573}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|4080}}
 +
  |update author  = minervamaga
 +
  |update version  = 4.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Abigail Centaur Horse Replacement
 +
  |original author = zcsnightmare
 +
  |original url    = {{nexus mod|281}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-2#post-42820
 +
  |update author  = Kreeate
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Abigail Hair Dye Mod
 +
  |original author = prettykiller
 +
  |original url    = {{nexus mod|2104}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
 +
  |update author  = Marigolden
 +
  |update version  = 0.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
   |original name  = Abigail Lewd Dialogue
 
   |original author = Entity2004
 
   |original author = Entity2004
 
   |original url    = {{nexus mod|1542}}
 
   |original url    = {{nexus mod|1542}}
Line 179: Line 235:
 
   |update author  = MouseyPounds
 
   |update author  = MouseyPounds
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Ace's Evelyn
 +
  |original author = Acerbicon
 +
  |original url    = {{nexus mod|933}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
 +
  |update author  = Aquilegia
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 188: Line 253:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Agumon - Dinosaur Replacer
 +
  |original author = Dragonyck
 +
  |original url    = {{nexus mod|2164}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|8976}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 196: Line 270:
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302103
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302103
 
   |update author  = macaro0n
 
   |update author  = macaro0n
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alicedafox's New Shirts and New Skirts (Shirts Only)
 +
  |original author = Alicedafox
 +
  |original url    = {{nexus mod|1128}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 241: Line 324:
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298392
 
   |update author  = Allayna
 
   |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Modern Farm Buildings
 +
  |original author = strawberrymilk95
 +
  |original url    = {{nexus mod|1125}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322076
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 260: Line 352:
 
   |update author  = acornfaerie
 
   |update author  = acornfaerie
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Ali's Overgrown Fairy Buildings RECOLOR
 +
  |original author = Kasuralixa
 +
  |original url    = {{nexus mod|1328}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3342172
 +
  |update author  = pepoluan
 +
  |update version  = 1.0.0-unofficial2.pepoluan
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 280: Line 381:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Altaria (Pokemon) (horse replacer)
+
  |original name  = All About Maru
 +
  |original author = Maiz
 +
  |original url    = {{nexus mod|94}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
 +
  |update author  = Marigolden
 +
  |update version  = 1.1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
   |original name  = Altaria (Pokemon) (horse replacer)
 
   |original author = Zhuria
 
   |original author = Zhuria
 
   |original url    = {{nexus mod|145}}
 
   |original url    = {{nexus mod|145}}
Line 287: Line 397:
 
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternative Evelyn
 +
  |original author = StaticOpium
 +
  |original url    = {{nexus mod|688}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-66222
 +
  |update author  = NeutronPong
 +
  |update version  = 1.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 303: Line 422:
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternate Dino Colors
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|186}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-93#post-3326211
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
Line 311: Line 439:
 
   |original url    = {{nexus mod|377}}
 
   |original url    = {{nexus mod|377}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302687
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322545
   |update author  = SuperElement & Allayna
+
   |update author  = coldazrael, SuperElement & Allayna
 
   |update version  = 3.0
 
   |update version  = 3.0
 +
}}
 +
{{/xnb
 +
  |original name  = Alternate Sheep Colors
 +
  |original author = DarkKassanova
 +
  |original url    = {{nexus mod|184}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 332: Line 469:
 
   |update author  = MouseyPounds
 
   |update author  = MouseyPounds
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Animal Onesies for Toddlers
 +
  |original author = pizza margherita
 +
  |original url    = https://community.playstarbound.com/threads/animal-onesies-for-toddlers-junimo-onesies-are-up.111041/
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-36805
 +
  |update author  = DamnedxAngel
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 341: Line 487:
 
   |update author  = coldazrael & Fyn
 
   |update author  = coldazrael & Fyn
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Anthro Children- Cats
 +
  |original author = ninjakaami
 +
  |original url    = {{nexus mod|503}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-105#post-3335926
 +
  |update author  = SpringsSong
 +
  |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 386: 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 395: 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 401: 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 421: 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 454: Line 672:
 
   |original author = Lumisteria
 
   |original author = Lumisteria
 
   |original url    = {{nexus mod|361}}
 
   |original url    = {{nexus mod|361}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302144
+
   |update url      = {{nexus mod|361}}
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 0.1
 
   |update version  = 0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Befriend Marlon and Gunther
 +
  |original author = Yoshimax
 +
  |original url    = {{nexus mod|2569}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/updating-mods-for-stardew-valley-1-3-closed.142524/page-78#post-3343907
 +
  |update author  = Pathoschild
 +
  |update version  = 1.05
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 463: Line 690:
 
   |original author = Gweniaczek
 
   |original author = Gweniaczek
 
   |original url    = {{nexus mod|1848}}
 
   |original url    = {{nexus mod|1848}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
+
   |update url      = {{nexus mod|1848}}
   |update author  = paradigmnomad
+
   |update author  = Gweniacsek
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 475: 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 485: 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 491: 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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Better Pigs & Recolours
+
   |original name  = Better Pigs & Recolours (v1.0)
 
   |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/
 
   |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      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-56060
   |update author  = twixstix
+
   |update author  = Farilar
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Better Void Chicken
+
  |original name  = Better Pigs & Recolours (v2.1)
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/better-pigs-recolours.109883/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
 +
  |update author  = twixstix
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Better Rain
 +
  |original author = Omnicorn
 +
  |original url    = {{nexus mod|146}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
 +
  |update author  = Marigolden
 +
  |update version  = 1.0.5-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
   |original name  = Better Void Chicken
 
   |original author = vvillow
 
   |original author = vvillow
 
   |original url    = {{nexus mod|1355}}
 
   |original url    = {{nexus mod|1355}}
Line 530: 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 547: 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 607: 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 629: Line 946:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Bootleg NES Chrono Trigger Frog
 +
  |original author = Plutey
 +
  |original url    = {{nexus mod|311}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 655: 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 683: Line 1,018:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Capsule Slime Incubator
 +
  |original author = hassan94935
 +
  |original url    = {{nexus mod|1226}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Carbuncle Cats
 +
  |original author = Cal
 +
  |original url    = {{nexus mod|303}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357233
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 745: Line 1,098:
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
 
   |update author  = arkoiris
 
   |update author  = arkoiris
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Catsine's Victorian Beehouses
 +
  |original author = Ernest/Catsine
 +
  |original url    = {{nexus mod|3297}}
 +
  |update name    = unofficial mod
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3345858
 +
  |update author  = xbukimina
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cel's Sheep
 +
  |original author = Celesty
 +
  |original url    = {{nexus mod|3027}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cerri's Walls and Floors
 +
  |original author = CerridwynMorgana
 +
  |original url    = {{nexus mod|1456}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 770: 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 782: 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 806: Line 1,177:
 
   |original url    = {{nexus mod|1319}}
 
   |original url    = {{nexus mod|1319}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3261364
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259911
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Chickens to Parrots v2
 +
  |original author = gizomo
 +
  |original url    = https://community.playstarbound.com/threads/turns-all-your-chickens-into-parrots.135204/
 +
  |update name    = Tropical Birds
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-98#post-73844
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 820: Line 1,200:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Community Center Bundle Overhauls
+
  |original name  = Clean Shane's Room
 +
  |original author = pandapants87 aka Ora
 +
  |original url    = {{nexus mod|575}}
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|575}}
 +
  |update author  = pandapants87 and minervamaga
 +
  |update version  = 2.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Clean Shave Harvey
 +
  |original author = Gemma
 +
  |original url    = {{nexus mod|71}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Cleaner Barns and Coops
 +
  |original author = Fuse
 +
  |original url    = {{nexus mod|926}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-119#post-3351045
 +
  |update author  = stevanihalim
 +
  |update version  = 1.2
 +
}}
 +
{{/xnb
 +
  |original name  = Cobblestone Path to Dark Grey Stone
 +
  |original author = GoddessOfThieves
 +
  |original url    = {{nexus mod|165}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Cockatiel Chickens
 +
  |original author = VanillaTiel 
 +
  |original url    = {{nexus mod|149}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Coii's Hair Sets Pack
 +
  |original author = Coii
 +
  |original url    = {{nexus mod|2869}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-69#post-47618
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 1.4.0-unofficial.3
 +
}}
 +
{{/xnb
 +
  |original name  = Cold Weather Haley
 +
  |original author = Sessurea
 +
  |original url    = {{nexus mod|429}}
 +
  |update name    = Cold Weather Haley - Content Patcher
 +
  |update url      = {{nexus mod|3091}}
 +
  |update author  = Nanogamer7
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Colorful Crystal Paths
 +
  |original author = FoxyFullmoon
 +
  |original url    = {{nexus mod|549}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-115#post-3345549
 +
  |update author  = k10_ftw/krissymarie
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
   |original name  = Community Center Bundle Overhauls
 
   |original author = 7Yrs
 
   |original author = 7Yrs
 
   |original url    = {{nexus mod|1062}}
 
   |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-9#post-3275848
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358330
   |update author  = Kuriiyo
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.4.1
 +
}}
 +
{{/xnb
 +
  |original name  = Compact Bathroom for your Farmhouse
 +
  |original author = Prismuth
 +
  |original url    = {{nexus mod|1626}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-46#post-29354
 +
  |update author  = Rmdhn
 +
  |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 835: Line 1,296:
 
   |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-13#post-3278756
 
   |update author  = Shalassa & arkoiris
 
   |update author  = Shalassa & arkoiris
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cozy Fishing Farm
 +
  |original author = opalie
 +
  |original url    = {{nexus mod|1398}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306920
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 844: Line 1,314:
 
   |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-12#post-3278197
 
   |update author  = Kuriiyo
 
   |update author  = Kuriiyo
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Crimson's Rock Crab Recolors
 +
  |original author = nekoCrimson
 +
  |original url    = {{nexus mod|1743}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-74#post-3310439
 +
  |update author  = TheTearer
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 880: Line 1,359:
 
   |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-56#post-3304011
 
   |update author  = kngermanotta
 
   |update author  = kngermanotta
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Cute Pink Albino Bunny Recolor
 +
  |original author = Jirachi
 +
  |original url    = {{nexus mod|1117}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3332744
 +
  |update author  = netish
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 895: Line 1,383:
 
   |original author = IdentityPollution
 
   |original author = IdentityPollution
 
   |original url    = {{nexus mod|348}}
 
   |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-30#post-3291433
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
   |update author  = mellowmallow
+
   |update author  = Flyff
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 935: Line 1,432:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dark-Haired Leah
 +
  |original author = Jokerine
 +
  |original url    = {{nexus mod|200}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 2.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 943: Line 1,449:
 
   |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-10#post-3277227
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Darker Watered Soil
 +
  |original author = Shardust
 +
  |original url    = {{nexus mod|1611}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329578
 +
  |update author  = pandachinoman
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 950: Line 1,465:
 
   |original url    = {{nexus mod|687}}
 
   |original url    = {{nexus mod|687}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-14#post-3279235
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = Fyn
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 961: Line 1,476:
 
   |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-7#post-3274729
 
   |update author  = tera415
 
   |update author  = tera415
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = DCBurger's Portraits (Hi-Res Only)
 +
  |original author = DCBurger
 +
  |original url    = {{nexus mod|888}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-89#post-3324251
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = DD's Handsome Harvey
 +
  |original author = DewdropDewdrop
 +
  |original url    = {{nexus mod|234}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
 +
  |update author  = Marigolden
 +
  |update version  = 1.1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Deluxe Barn Fix and more Space
 +
  |original author = dizarus
 +
  |original url    = {{nexus mod|305}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357649
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Derpy Pugs
 +
  |original author = Slimberton
 +
  |original url    = {{nexus mod|278}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360538
 +
  |update author  = jenf
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 998: Line 1,549:
 
   |update author  = SarahSyna & Fyn
 
   |update author  = SarahSyna & Fyn
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dizor's Character Redraws
 +
  |original author = Dizor
 +
  |original url    = {{nexus author|Dizor}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-99#post-3331859
 +
  |update author  = minervamaga
 +
  |update version  = 1.0.0-unofficial.1-minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,040: Line 1,600:
 
   |original url    = {{nexus mod|1508}}
 
   |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-38#post-3298392
+
   |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  = 1.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,060: Line 1,620:
 
   |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  = Dust Spirit Recolor- Susuwatari
 +
  |original author = FinalMantasyX
 +
  |original url    = https://community.playstarbound.com/threads/dust-spirit-recolor-susuwatari-soot-spirits-from-spirited-away.107820/
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-52216
 +
  |update author  = Shaymin
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = DW3 Agumon Dinosaur Replacer
 +
  |original author = boofdawg
 +
  |original url    = {{nexus mod|3276}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|8976}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Dwarf Jawa
 +
  |original author = GreaterPorpoise
 +
  |original url    = https://community.playstarbound.com/threads/dwarf-jawa-sprite-portrait.110399/
 +
  |update name    = unofficial update
 +
  |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-18001
 +
  |update author  = mouse
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 1,067: Line 1,654:
 
   |original url    = {{nexus mod|1091}}
 
   |original url    = {{nexus mod|1091}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278636
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358433
   |update author  = Shalassa
+
   |update author  = Allayna
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Easy Bundles
 +
  |original author = Siddybear
 +
  |original url    = https://community.playstarbound.com/threads/super-easy-fishing-and-easy-bundles.109057/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358785
 +
  |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 1,083: Line 1,679:
 
   |original name  = Eemie Animal Collection
 
   |original name  = Eemie Animal Collection
 
   |original author = Eemie
 
   |original author = Eemie
   |original url    = {{nexus author|34984615}}
+
   |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/page-10#post-3277270
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277270
Line 1,094: Line 1,690:
 
   |original url    = {{nexus mod|854}}
 
   |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-64#post-3305827
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-66#post-3306821
 
   |update author  = coldazrael, littlesin21, Asher404, acornfaerie
 
   |update author  = coldazrael, littlesin21, Asher404, acornfaerie
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Eemie Cute Long Hairstyles
+
   |original name  = Eemie's Cute Long Hairstyles
 
   |original author = Eemie
 
   |original author = Eemie
 
   |original url    = {{nexus mod|910}}
 
   |original url    = {{nexus mod|910}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267152
+
   |update url      = {{nexus mod|4526}}
   |update author  = jhunichi
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 2.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,148: Line 1,744:
 
   |original url    = {{nexus mod|419}}
 
   |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-4#post-3267221
+
   |update url      = {{nexus mod|4519}}
   |update author  = jhunichi
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 2.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,177: Line 1,773:
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Eemie Victorian Buildings (Non-seasonal)
 +
  |original author = Eemie
 +
  |original url    = {{nexus mod|682}}
 +
  |update name    = Official update
 +
  |update url      = {{nexus mod|3511}}
 +
  |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 1,185: Line 1,790:
 
   |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/#post-3261025
   |update author  = .lavender.
+
   |update author  = .Lavender.
 
   |update version  = 1.1
 
   |update version  = 1.1
 
}}
 
}}
Line 1,204: Line 1,809:
 
   |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-6#post-3273395
 
   |update author  = hatmouse
 
   |update author  = hatmouse
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elle's Barn and Coop Animal Replacements
 +
  |original author = junimods
 +
  |original url    = https://community.playstarbound.com/threads/elles-barn-and-coop-animal-replacements.126156/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322731
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 1,261: Line 1,875:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Elliot Spruced Up
+
   |original name  = Elliott Revised
   |original author = BlazingPug
+
   |original author = Saltnburn
   |original url    = {{nexus mod|1291}}
+
   |original url    = {{nexus mod|1910}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308486
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elliott Refined
 +
  |original author = Chrysanthe
 +
  |original url    = {{nexus mod|818}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323191
 +
  |update author  = coldazrael
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Elliot Spruced Up
 +
  |original author = BlazingPug
 +
  |original url    = {{nexus mod|1291}}
 +
  |update name    = unofficial update
 +
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
Line 1,304: Line 1,936:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Emily Sprites Remastered
 +
  |original author = Shadowfire1223
 +
  |original url    = {{nexus mod|1551}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
 +
  |update author  = coldazrael
 +
  |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,337: Line 1,978:
 
   |original url    = {{nexus mod|1884}}
 
   |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-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
Line 1,385: Line 2,026:
 
   |update author  = flameofthenight
 
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Extended Slime Hutch
 +
  |original author = QuantumConcious
 +
  |original url    = https://community.playstarbound.com/threads/extendedslimehutch-with-safe-zone-and-storage-area-updated-19-4-interior-only.112455/page-2#post-2877091
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3349511
 +
  |update author  = Jhoulana
 +
  |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Fall Heirloom Crops Overlay
 +
  |original author = makoace
 +
  |original url    = {{nexus mod|2954}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-103#post-3334306
 +
  |update author  = minervamaga
 +
  |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,393: Line 2,052:
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3274106
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3274106
 
   |update author  = kaitekat
 
   |update author  = kaitekat
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Farmer's Water Pipe
 +
  |original author = Nectrus
 +
  |original url    = {{nexus mod|1195}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-127#post-3360590
 +
  |update author  = nocato
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 1,416: Line 2,084:
 
   |original name  = Fastoso's Qute Animals
 
   |original name  = Fastoso's Qute Animals
 
   |original author = Fastoso
 
   |original author = Fastoso
   |original url    = https://community.playstarbound.com/resources/qute-animals-cow-pig.3661/
+
   |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-9#post-3275660
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275660
Line 1,423: Line 2,091:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Female Duck
+
  |original name  = Fat Pony
   |original author = CaveSalamander
+
  |original author = Jeiel Aranal/ChemiKhazi
   |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
+
  |original url    = {{nexus mod|354}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3340715
 +
  |update author  = annachibi
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Female Bachelors Dialogue Overhaul
 +
  |original author = Valoodx
 +
  |original url    = {{nexus mod|3042}}
 +
  |update name    = official update
 +
  |update url      = {{nexus mod|3042}}
 +
  |update author  = Valoodx
 +
  |update version  = 0.3
 +
}}
 +
{{/xnb
 +
   |original name  = Female Duck
 +
   |original author = CaveSalamander
 +
   |original url    = https://community.playstarbound.com/threads/biped-dinosaur-smaller-dino-egg-bonus-female-duck.110547/
 
   |update name    = unofficial update
 
   |update 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-9#post-3276044
Line 1,472: Line 2,158:
 
   |original url    = {{nexus mod|339}}
 
   |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-64#post-33057653302020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
 
   |update author  = Ensifera
 
   |update author  = Ensifera
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Flame Horses - 5 Colors
 +
  |original author = CreepyKat
 +
  |original url    = {{nexus mod|1017}}
 +
  |update name    = unofficial update
 +
  |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-71#post-49210
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 1.0.0
 +
}}
 +
{{/xnb
 +
  |original name  = Flo - New Custom NPC (Florence)
 +
  |original author = randomAnon123
 +
  |original url    = {{nexus mod|591}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-109#post-3338661
 +
  |update author  = HeyItsDuke
 +
  |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,499: Line 2,203:
 
   |original url    = {{nexus mod|1289}}
 
   |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-5#post-32722928
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
 
   |update author  = Shalassa
 
   |update author  = Shalassa
 
   |update version  = 1.0
 
   |update version  = 1.0
Line 1,519: Line 2,223:
 
   |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-9#post-3276044
 
   |update author  = twixstix
 
   |update author  = twixstix
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fluffy Tuxedo Cat
 +
  |original author = osmiacyril
 +
  |original url    = {{nexus mod|850}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
 +
  |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
Line 1,529: Line 2,242:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.1
 
   |update version  = 1.1
 +
}}
 +
{{/xnb
 +
  |original name  = Four Crystal Paths Retextures
 +
  |original author = stupiddullahans
 +
  |original url    = {{nexus mod|1305}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358525
 +
  |update author  = Allayna
 +
  |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,538: Line 2,260:
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Fruit Trees with Signs
 +
  |original author = Develsaa
 +
  |original url    = {{nexus mod|99}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
 +
  |update author  = Marigolden
 +
  |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,544: Line 2,275:
 
   |original url    = {{nexus mod|1058}}
 
   |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-47#post-3300651
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357809
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,558: Line 2,289:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Garden Hedge
+
  |original name  = F-SV Stable - Seasonal and White
   |original author = ohrabbit
+
  |original author = Flumme
   |original url    = {{nexus mod|168}}
+
  |original url    = {{nexus mod|1467}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-94#post-3326671
 +
  |update author  = minervamaga
 +
  |update version  = 1.0
 +
}}
 +
{{/xnb
 +
   |original name  = Garden Hedge
 +
   |original author = ohrabbit
 +
   |original url    = {{nexus mod|168}}
 
   |update name    = unofficial update
 
   |update 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-57#post-3304232
 
   |update author  = Kuriiyo
 
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Genderbent Bachelorettes
 +
  |original author = Lechet AKA yuiidragon
 +
  |original url    = {{nexus mod|199}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
 +
  |update author  = Marigolden
 +
  |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,583: Line 2,332:
 
   |update author  = Allayna
 
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Gift of Gab - Marriage Candidate Edition
 +
  |original author = SunnyBird
 +
  |original url    = {{nexus mod|3074}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
 +
  |update author  = uwuchiha
 +
  |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,589: Line 2,347:
 
   |original url    = {{nexus mod|1788}}
 
   |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-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
Line 1,601: Line 2,359:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Gnarly's Farm Expansion
 +
  |original author = GnarlyJaspian
 +
  |original url    = {{nexus mod|1187}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-96#post-3329807
 +
  |update author  = minervamaga
 +
  |update version  = 1.3.2-unofficial.minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 1,612: Line 2,379:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Grass Path for Every Season
+
   |original name  = Goat Replacement
   |original author = MiaEmilia
+
   |original author = ApproachCautiously
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
+
   |original url    = {{nexus mod|185}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = D.Grey
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Green Community Center
+
   |original name  = Goat with Horns
   |original author = Opalie
+
   |original author = Develsaa
   |original url    = {{nexus mod|1242}}
+
   |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-64#post-3305939
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = Ensifera
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Gunther Recolour
+
   |original name  = Gold Star Portrait Overhaul
   |original author = Ylrien
+
   |original author = Lorshar
   |original url    = {{nexus mod|1637}}
+
   |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-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322170
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Gus Refined
+
   |original name  = gotama portraits
   |original author = saturn
+
   |original author = gotama
   |original url    = {{nexus mod|1412}}
+
   |original url    = {{nexus mod|975}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-75#post-3311351
   |update author  = coldazrael
+
   |update author  = Rubecula
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hairstyles recolored and a new Hairstyle Update
+
   |original name  = gotama's Portraits MOD 2
   |original author = Alicedafox
+
   |original author = gotama
   |original url    = {{nexus mod|1103}}
+
   |original url    = {{nexus mod|1221}}
 
   |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-100#post-3332737
   |update author  = ayahimew & Kuriiyo
+
   |update author  = netish
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley/Penny/Leah Expanded Dialogue
+
   |original name  = Gotama's Scarecrow and Hats Mod
   |original author = KThxBye910
+
   |original author = gomatamanyann
   |original url    = https://community.playstarbound.com/resources/haley-penny-leah-expanded-dialogue.4697/
+
   |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-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-88#post-3323500
   |update author  = flameofthenight
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley Off-The-Shoulder Dress
+
   |original name  = Gothish Hat Recolors
   |original author = Ahrimhan
+
   |original author = GoddessOfThieves
   |original url    = {{nexus mod|1007}}
+
   |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-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343178
   |update author  = Amx
+
   |update author  = Dede_Bug
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Haley Reskin
+
   |original name  = Grass Path for Every Season
   |original author = magimatica
+
   |original author = MiaEmilia
   |original url    = {{nexus mod|1132}}
+
   |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-11#post-3277868
+
   |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  = Handsome Mr. Qi
+
   |original name  = Gravel Path Fix Mod
   |original author = MomiChan
+
   |original author = Yunix
   |original url    = {{nexus mod|1582}}
+
   |original url    = {{nexus mod|51}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347412
   |update author  = paradigmnomad
+
   |update author  = Marigolden
   |update version  = 1.1
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Happier Pig with New Eyes
+
   |original name  = Green Community Center
   |original author = Develsaa
+
   |original author = Opalie
   |original url    = {{nexus mod|26}}
+
   |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-39#post-3298931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305939
   |update author  = Allayna
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Harvey Personality Mod (Dialogue Only)
+
   |original name  = Grumpy Cat
   |original author = woosh0
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|983}}
+
   |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-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = flameofthenight
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Harvey Refined
+
   |original name  = Gunther Recolour
   |original author = Chrysanthe
+
   |original author = Ylrien
   |original url    = {{nexus mod|879}}
+
   |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-59#post-3304554
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = AquilegiaStardew
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hay Silo
+
   |original name  = Gus into Wendy
   |original author = Flor3nce2456
+
   |original author = bajel
   |original url    = {{nexus mod|1519}}
+
   |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-36#post-3297356
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-71#post-3308320
   |update author  = Allayna
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hill-Top Forest Map
+
   |original name  = Gus Refined
   |original author = Minnue
+
   |original author = saturn
   |original url    = {{nexus mod|601}}
+
   |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-9#post-3275679
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305524
   |update author  = ChiiBee
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hispanic Alex
+
   |original name  = Hairstyles recolored and a new Hairstyle Update
   |original author = AllegedMexican
+
   |original author = Alicedafox
   |original url    = {{nexus mod|846}}
+
   |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-62#post-3305267
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278565
   |update author  = coldazrael
+
   |update author  = ayahimew & Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hispanic George
+
   |original name  = Haley/Penny/Leah Expanded Dialogue
   |original author = AllegedMexican
+
   |original author = KThxBye910
   |original url    = {{nexus mod|838}}
+
   |original url    = {{chucklefish mod|4697}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = coldazrael
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hobbit Hole
+
   |original name  = Haley and Penny Universal Love
   |original author = LemonEX
+
   |original author = LisaWolf
   |original url    = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961
+
   |original url    = {{nexus mod|1600}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961/page-5#post-3268689
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341274
   |update author  = Pathoschild
+
   |update author  = Dede_Bug
   |update version  = 1.0-unofficial.1-pathoschild
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = hojichas' Wallpaper and Flooring
+
   |original name  = Haley as Vampire Revamp
   |original author = hojichas
+
   |original author = SextingWithSirens
   |original url    = {{nexus mod|912}}
+
   |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-23#post-3285313
+
   |update url      = https://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-98#post-73276
   |update author  = Allayna & Mitchell
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = hojichas' Seaside Interior
+
   |original name  = Haley Off-The-Shoulder Dress
   |original author = hojichas
+
   |original author = Ahrimhan
   |original url    = {{nexus mod|1189}}
+
   |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-50#post-3301284
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-16#post-3280497
   |update author  = dreamsicl
+
   |update author  = Amx
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Holsteins (White Cow)
+
   |original name  = Haley Reskin
   |original author = Zhuria
+
   |original author = magimatica
   |original url    = {{nexus mod|45}}
+
   |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-12#post-3278037
+
   |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  = Hope's Farmer Customization Mods
+
   |original name  = Haley Skirt Recolour
   |original author = HopeWasHere
+
   |original author = Nyxcat
   |original url    = {{nexus mod|1008}}
+
   |original url    = {{nexus mod|1039}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346589
   |update author  = D.Grey
+
   |update author  = Dede_Bug
   |update version  = 2.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Hope's Secret Springs Cave
+
   |original name  = Handsome Mr. Qi
   |original author = HopeWasHere
+
   |original author = MomiChan
   |original url    = {{nexus mod|1155}}
+
   |original url    = {{nexus mod|1582}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287131
   |update author  = coldazrael
+
   |update author  = paradigmnomad
   |update version  = 3.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = (NSFW) Horny Bachelors
+
   |original name  = Happier Pig with New Eyes
   |original author = Girafarig
+
   |original author = Develsaa
   |original url    = {{nexus mod|791}}
+
   |original url    = {{nexus mod|26}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-25#post-3286927
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
   |update author  = paradigmnomad & ShSammy
+
   |update author  = Allayna
   |update version  = 1.0.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horse Edits & Recolours
+
   |original name  = Hardmode
   |original author = Zhuria
+
   |original author = RamenYum
   |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
+
   |original url    = {{nexus mod|714}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3346590
   |update author  = twixstix
+
   |update author  = Dede_Bug
 +
  |update version  = 2.0
 +
}}
 +
{{/xnb
 +
  |original name  = Harvest Moon Wizard Replacement
 +
  |original author = TheMainFlamingoose
 +
  |original url    = {{nexus mod|4060}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-123#post-3354839
 +
  |update author  = art17
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horses to Dragons/Pegasi
+
   |original name  = Harvey Personality Mod (full)
   |original author = Aternova
+
   |original author = woosh0
   |original url    = https://community.playstarbound.com/threads/horses-to-dragons-pegasi-saddleless-steeds-and-hercules-pegasus.108539/
+
   |original url    = {{nexus mod|983}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-45#post-3300239
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3366935
   |update author  = Allayna & brybryj
+
   |update author  = uwuchiha
   |update version  = 1.0
+
   |update version  = 2.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Horse to Mule
+
   |original name  = Harvey Refined
   |original author = magimatica
+
   |original author = Chrysanthe
   |original url    = {{nexus mod|1181}}
+
   |original url    = {{nexus mod|879}}
 
   |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-86#post-3323257
   |update author  = paradigmnomad
+
   |update author  = AquilegiaStardew
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = House Remodel - Interior Design
+
   |original name  = Harvey Revised
   |original author = Minakie
+
   |original author = Saltnburn
   |original url    = {{nexus mod|753}}
+
   |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-64#post-3305998
+
   |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  = Hudson Valley Buildings
+
   |original name  = Hay Silo
   |original author = oomps62, magimatica and endohare
+
   |original author = Flor3nce2456
   |original url    = {{nexus mod|1478}}
+
   |original url    = {{nexus mod|1519}}
   |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-36#post-3297356
   |update author  = oomps62
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Immersive Marriage - Abigail
+
   |original name  = Heyo! No Mayo!
   |original author = robolink
+
   |original author = ProperPunctuation
   |original url    = {{nexus mod|33}}
+
   |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-4#post-3271485
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-72#post-3308973
   |update author  = D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Improved Dirt and Recolored Grass for Fall (English Only)
+
   |original name  = Highland Cattle
   |original author = Relenanator
+
   |original author = ClockworkZombe
   |original url    = {{nexus mod|1105}}
+
   |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-61#post-3305023
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Improved Penny Vanilla Portrait
+
   |original name  = Hill-Top Forest Map
   |original author = G The Generous
+
   |original author = Minnue
   |original url    = {{nexus mod|1498}}
+
   |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-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275679
   |update author  = coldazrael
+
   |update author  = ChiiBee
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Improved Shed Mod
+
   |original name  = Hispanic Alex
   |original author = wintrparkgrl
+
   |original author = AllegedMexican
   |original url    = https://www.reddit.com/r/StardewValley/comments/55x9hj/improved_shed_mod/
+
   |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/#post-3258682
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
   |update author  = ShneekeyTheLost
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Iridium Ore Galaxy Horse
+
   |original name  = Hispanic George
   |original author = PecuniamArt
+
   |original author = AllegedMexican
   |original url    = {{nexus mod|1006}}
+
   |original url    = {{nexus mod|838}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301837
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305267
   |update author  = Ches713
+
   |update author  = coldazrael
   |update version  = 1.1
+
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Hobbit Hole
 +
  |original author = LemonEX
 +
  |original url    = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/lemons-characters-more-update-clint.109961/page-5#post-3268689
 +
  |update author  = Pathoschild
 +
  |update version  = 1.0-unofficial.1-pathoschild
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Item Overhaul
+
   |original name  = hojichas' Wallpaper and Flooring
   |original author = Boneberry
+
   |original author = hojichas
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
+
   |original url    = {{nexus mod|912}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3300985
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
   |update author  = Allayna & paradigmnomad
+
   |update author  = Allayna & Mitchell
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = JAC'd Greenhouse Extended
+
   |original name  = hojichas' Seaside Interior
   |original author = Plutey/Androxilogin
+
   |original author = hojichas
   |original url    = {{nexus mod|739}}
+
   |original url    = {{nexus mod|1189}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
   |update author  = D.Grey
+
   |update author  = dreamsicl
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jamie's Balanced Greenhouse
+
   |original name  = Holsteins (White Cow)
   |original author = JamieMage2005
+
   |original author = Zhuria
   |original url    = {{nexus mod|1078}}
+
   |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-5#post-3272292
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-12#post-3278037
   |update author  = Shalassa
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jersey Cow
+
   |original name  = Hope's Farmer Customization Mods
   |original author = magimatica
+
   |original author = HopeWasHere
   |original url    = {{nexus mod|861}}
+
   |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-3304718
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
   |update author  = Ches713
+
   |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  = Jodi and Vincent - Sprites and Portraits Remastered Mod
+
   |original name  = Hope's Secret Springs Cave
   |original author = Shadowfire1223
+
   |original author = HopeWasHere
   |original url    = {{nexus mod|1555}}
+
   |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-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  = 3.0
 +
}}
 +
{{/xnb
 +
  |original name  = (NSFW) Horny Bachelors
 +
  |original author = Girafarig
 +
  |original url    = {{nexus mod|791}}
 +
  |update name    = official update
 +
  |update url      = https://www.nexusmods.com/stardewvalley/mods/2564
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Jungle Temple
+
   |original name  = Horse Edits & Recolours
   |original author = UlithiumDragon
+
   |original author = Zhuria
   |original url    = {{nexus mod|1014}}
+
   |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-42#post-3299529
+
   |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  = Junimo Artifact Digspots
+
   |original name  = Horses to Dragons/Pegasi
   |original author = Seismothesaurus
+
   |original author = Aternova
   |original url    = {{nexus mod|1321}}
+
   |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-42#post-3299520
+
   |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  = Junimo Horse
+
   |original name  = Horse to Mule
   |original author = monteso
+
   |original author = magimatica
   |original url    = {{nexus mod|700}}
+
   |original url    = {{nexus mod|1181}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277868
   |update author  = coldazrael
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Junimos to Totoros
+
   |original name  = Horse to Vespa Scooter + Garage
   |original author = magimatica
+
   |original author = Pi.Curious
   |original url    = {{nexus mod|867}}
+
   |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-64#post-3305998
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75931
   |update author  = coldazrael
+
   |update author  = phomaique
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Karina's Long Hair
+
   |original name  = House (Final Upgrade) Color Mod
   |original author = Karina
+
   |original author = MrMcK
   |original url    = {{nexus mod|512}}
+
   |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-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 0.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Karmylla's Cellar Edit
+
   |original name  = House Remodel - Interior Design
   |original author = Karmylla
+
   |original author = Minakie
   |original url    = {{nexus mod|1148}}
+
   |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-20#post-3283606
+
   |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.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Karmylla's Spouse Room Edits
+
   |original name  = Hudson Valley Buildings
   |original author = Karmylla
+
   |original author = oomps62, magimatica and endohare
   |original url    = {{nexus mod|1356}}
+
   |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-31#post-3292434
+
   |update url      = {{nexus mod|2110}}
   |update author  = squitz
+
   |update author  = oomps62
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kawaii Hats
+
   |original name  = Huge Sheds Redux
   |original author = yuikami
+
   |original author = Boldrin
   |original url    = {{nexus mod|64}}
+
   |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-54#post-3302982
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321937
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 0.1
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kero Cat Replacement - Cardcaptor Sakura
+
   |original name  = Immersive (F) Marriage Candidate Overhaul
   |original author = Walpi-chan
+
   |original author = Chickenkila
   |original url    = {{nexus mod|1028}}
+
   |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-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Kitchen Nook for 1st Farmhouse
+
   |original name  = Immersive Marriage - Abigail
   |original author = Allayna
+
   |original author = robolink
   |original url    = {{nexus mod|1668}}
+
   |original url    = {{nexus mod|33}}
  |update name    = official update
 
  |update url      = {{nexus mod|1668}}
 
  |update author  = Allayna
 
  |update version  = 2.6
 
}}
 
{{/xnb
 
  |original name  = Kitty Scarecrow Replacments
 
  |original author = jinxiewinxie
 
  |original url    = {{nexus mod|191}}
 
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-36#post-3297356
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3271485
   |update author  = Allayna
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Leafeon Retexture for Cat
+
   |original name  = Improved Dirt and Recolored Grass for Fall (English Only)
   |original author = ImXTooNinjaxX
+
   |original author = Relenanator
   |original url    = {{nexus mod|1673}}
+
   |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-38#post-3298392
+
   |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.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Leah New Hair
+
   |original name  = Improved Penny Vanilla Portrait
   |original author = CoffeeBuns
+
   |original author = G The Generous
   |original url    = {{nexus mod|757}}
+
   |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-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = Aquilegia
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Less Creepy Marnie Sprite
+
   |original name  = Improved Shed Mod
   |original author = CassandraRose
+
   |original author = wintrparkgrl
   |original url    = {{nexus mod|1349}}
+
   |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/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258682
   |update author  = D.Grey
+
   |update author  = ShneekeyTheLost
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lewd Bachelorettes
+
   |original name  = Introducing JojaMart and Shane: A Custom Cutscene Mod
   |original author = AirplaneRandy
+
   |original author = IronZelly
   |original url    = https://community.playstarbound.com/threads/lewd-bachelorettes-portrait-mod-buxom-haley-added.108210/
+
   |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-26#post-3287084
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-80#post-3317020
   |update author  = paradigmnomad
+
   |update author  = springacres
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Linus With Clothes
+
   |original name  = Ira Yume100 - Harvey
   |original author = Goodledoodoo
+
   |original author = Minrisa
   |original url    = {{nexus mod|1512}}
+
   |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/#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
 +
  |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  = Lolia Fashion Bachelorettes
+
   |original name  = Item Overhaul
   |original author = Royalyspooky
+
   |original author = Boneberry
   |original url    = https://community.playstarbound.com/threads/lolita-fashion-bachelorettes.128214/
+
   |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-4#post-3267529
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-49#post-3300985
   |update author  = paradigmnomad
+
   |update author  = Allayna & paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Longhair Cat Replacement
+
   |original name  = JAC'd Greenhouse Extended
   |original author = Korokos
+
   |original author = Plutey/Androxilogin
   |original url    = https://community.playstarbound.com/threads/longhair-cats-four-new-colors-4-15.111316/
+
   |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-3#post-3263910
+
   |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  = Long Elf Ears Recolours
+
   |original name  = JAC'd Sheds
   |original author = ScalesofGrey
+
   |original author = Plutey/Androxilogin
   |original url    = {{nexus mod|1088}}
+
   |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-28#post-3289172
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-83#post-3321936
   |update author  = staarfruit
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Luna Cat
+
   |original name  = Jamie's Balanced Greenhouse
   |original author = PoshPossum
+
   |original author = JamieMage2005
   |original url    = {{nexus mod|2157}}
+
   |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-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272292
   |update author  = kngermanotta
+
   |update author  = Shalassa
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Lunatic Farm Map
+
   |original name  = JG Demitrus in shipping box
   |original author = Lunatic
+
   |original author = Jeremiah Gottwald AKA JGottwald
   |original url    = {{nexus mod|1408}}
+
   |original url    = {{nexus mod|65}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-116#post-3347131
 +
  |update author  = Marigolden
 +
  |update version  = 1.0-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Jersey Cow
 +
  |original author = magimatica
 +
  |original url    = {{nexus mod|861}}
 
   |update name    = unofficial update
 
   |update 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-60#post-3304718
   |update author  = SuperElement & Allayna
+
   |update author  = Ches713
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = LTTPBuildingsreplacer
+
   |original name  = Jodi and Vincent - Sprites and Portraits Remastered Mod
   |original author = JazzMinK
+
   |original author = Shadowfire1223
   |original url    = {{nexus mod|1284}}
+
   |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-19#post-3283067
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271817
   |update author  = m2pt5/Emtu
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Madeline's Farmhouse and Farm Building Recolors
+
   |original name  = JumJum Jr.
   |original author = Madeline
+
   |original author = ProJared
   |original url    = {{nexus mod|198}}
+
   |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-60#post-3304980
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = coldazrael & Allayna
+
   |update author  = Marigolden
   |update version  = 5.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Magica Trees
+
   |original name  = Jungle Temple
   |original author = ERRORcauser
+
   |original author = UlithiumDragon
   |original url    = {{nexus mod|1211}}
+
   |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-10#post-3277227
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299529
   |update author  = D.Grey
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Makeup as Accessories
+
   |original name  = Junimo Artifact Digspots
   |original author = Jinxiewinxie
+
   |original author = Seismothesaurus
   |original url    = {{nexus mod|183}}
+
   |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-28#post-3289541
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299520
   |update author  = junali
+
   |update author  = Allayna
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marriage Dialogue Expansion - Eilliot
+
   |original name  = Junimo Horse
   |original author = Sabreene
+
   |original author = monteso
   |original url    = {{nexus mod|1595}}
+
   |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-5#post-3271742
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |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  = Junimos to Totoros
   |original author = shann713
+
   |original author = magimatica
   |original url    = {{nexus mod|1677}}
+
   |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-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  = Marshmallow Unicorn
+
   |original name  = Kal's Marriage Candidates Portraits
   |original author = jigajang
+
   |original author = kal621owo621_Snakebite
   |original url    = https://community.playstarbound.com/resources/marshmallow-unicorn.3720/
+
   |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-53#post-3302646
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/#post-28714
   |update author  = Ches713
+
   |update author  = Flyff
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Marshmallow Unicorn (Alternative)
+
   |original name  = Karina's Long Hair
   |original author = summonercat
+
   |original author = Karina
   |original url    = https://community.playstarbound.com/threads/marshmallow-unicorn.116854/#post-3134876
+
   |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/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Maru Replacer - earlier development version
+
   |original name  = Karmylla's Cellar Edit
   |original author = Thoroughly
+
   |original author = Karmylla
   |original url    = {{nexus mod|29}}
+
   |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-62#post-3305303
+
   |update url      = {{nexus mod|1148}}
   |update author  = coldazrael & Allayna
+
   |update author  = Karmylla
   |update version  = 1.2
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Maru Portrait's Retexture
+
   |original name  = Karmylla's Spouse Room Edits
   |original author = HarinBAE
+
   |original author = Karmylla
   |original url    = {{nexus mod|1578}}
+
   |original url    = {{nexus mod|1356}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
+
   |update url      = {{nexus mod|1356}}
   |update author  = coldazrael
+
   |update author  = karmylla
   |update version  = 1.0
+
   |update version  = 3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Matching Maru Sprite (Villager Anime Portraits)
+
   |original name  = Karna Fate - Sebastian
   |original author = CassandraRose
+
   |original author = Minrisa
   |original url    = {{nexus mod|1453}}
+
   |original url    = {{nexus mod|2292}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3322224
   |update author  = D.Grey
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Matching Slime Hutch
+
   |original name  = Kawaii Hats
   |original author = SlushieSlowpoke
+
   |original author = yuikami
   |original url    = {{nexus mod|111}}
+
   |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/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3302982
   |update author  = MouseyPounds
+
   |update author  = coldazrael
   |update version  = 1.0-Final
+
   |update version  = 0.1  
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MCMC's Portrait Mod
+
   |original name  = Kero Cat Replacement - Cardcaptor Sakura
   |original author = MCMC
+
   |original author = Walpi-chan
   |original url    = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/
+
   |original url    = {{nexus mod|1028}}
 
   |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-64#post-3305886
   |update author  = keodau27
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Medieval Traditional Hats
+
   |original name  = Kimberly's witch kitchen.Bed.Bathroom.Crib.
   |original author = LemonEX
+
   |original author = Kimberly
   |original url    = https://community.playstarbound.com/threads/medieval-traditional-hats-replacing.110803/
+
   |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-51#post-3301734
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-112#post-3340424
   |update author  = Mopsy
+
   |update author  = mouseypounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Melons to Watermelons
+
   |original name  = Kitchen Nook for 1st Farmhouse
   |original author = zynonia
+
   |original author = Allayna
   |original url    = {{nexus mod|1397}}
+
   |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-62#post-3305179
+
   |update url      = {{nexus mod|1668}}
   |update author  = Ensifera
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.6
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mew - Cat Replacer
+
   |original name  = Kitty Scarecrow Replacments
   |original author = 00Strange00
+
   |original author = jinxiewinxie
   |original url    = {{nexus mod|477}}
+
   |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-44#post-3300021
+
   |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  = Mimikyu - Cat Dog Replacer
+
   |original name  = Kingdom Hearts Sea Salt Ice Cream
   |original author = ChiChain and SihaRakhet
+
  |original author = Dom AKA domfred908
   |original url    = {{nexus mod|1246}}
+
  |original url    = {{nexus mod|315}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348738
 +
  |update author  = Marigolden
 +
  |update version  = 0.9.2-unofficial.1-Marigolden
 +
}}
 +
{{/xnb
 +
  |original name  = Korea Retro
 +
   |original author = standlaid1
 +
   |original url    = {{nexus mod|5287}}
 
   |update name    = unofficial update
 
   |update 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://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-48#post-29801
 
   |update author  = Allayna
 
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mint Kiss Furniture
+
   |original name  = Leafeon Retexture for Cat
   |original author = Ribbonain
+
   |original author = ImXTooNinjaxX
   |original url    = {{nexus mod|619}}
+
   |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-60#post-3304686
+
   |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.3
 
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Missy's Shirts
+
   |original name  = Leah New Hair
   |original author = MissyDiabolical
+
   |original author = CoffeeBuns
   |original url    = {{nexus mod|1523}}
+
   |original url    = {{nexus mod|757}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303956
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
   |update author  = Kuriiyo & mukamii
+
   |update author  = Aquilegia
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Missy's Walls and Floors
+
   |original name  = Less Creepy Marnie Sprite
   |original author = MissyDiabolical
+
   |original author = CassandraRose
   |original url    = {{nexus mod|1579}}
+
   |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-64#post-3305998
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
   |update author  = coldazrael
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's and Eemie's Butterflies (1.3)
+
   |original name  = let 's cafe
   |original author = Mi/Campanulamis & Eemie
+
   |original author = momoki
   |original url    = {{nexus mod|1111}}
+
   |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-23#post-3285230
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70199
   |update author  = Oak
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Bathroom Recolours
+
   |original name  = Lewd Bachelorettes (Buxom)
   |original author = Mi/Campanulamis
+
   |original author = AirplaneRandy
   |original url    = {{nexus mod|1036}}
+
   |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-3285521
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-131#post-3369629
   |update author  = MouseyPounds
+
   |update author  = UberMann
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Fireplace (1.3)
+
   |original name  = Lewis to Mayor Thomas Character Overhaul
   |original author = Mi/Campanulamis
+
   |original author = Budzilla
   |original url    = {{nexus mod|1024}}
+
   |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-6#post-3273636
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347504
   |update author  = Seyph
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mi's Classy Victorian interior set inspired by eemie
+
   |original name  = Linus is a potato From minecraft
   |original author = Mi/Campanulamis
+
   |original author = laser5mw
   |original url    = {{nexus mod|1074}}
+
   |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-8#post-3275117
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-73588
   |update author  = hwayunhae
+
   |update author  = phomaique
   |update version  = 1.0
+
   |update version  = 1.0-unofficial.1-phomaique
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Monster Valley
+
   |original name  = Linus With Clothes
   |original author = Blizzriel
+
   |original author = Goodledoodoo
   |original url    = {{nexus mod|2407}}
+
   |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-41#post-3299324
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
   |update author  = Allayna
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Moogle Cat Replacement
+
   |original name  = Lolia Fashion Bachelorettes
   |original author = Cal
+
   |original author = Royalyspooky
   |original url    = {{nexus mod|382}}
+
   |original url    = https://community.playstarbound.com/threads/lolita-fashion-bachelorettes.128214/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-4#post-3267529
   |update author  = coldazrael
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Accessible Wilderness Farm
+
   |original name  = Longhair Cat Replacement
   |original author = gobbldygook
+
   |original author = Korokos
   |original url    = {{nexus mod|603}}
+
   |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/page-26#post-3287303
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-3#post-3263910
   |update author  = junali
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Accurate Dwarf
+
   |original name  = Long Elf Ears Recolours
   |original author = spacedoggity
+
   |original author = ScalesofGrey
   |original url    = {{nexus mod|1470}}
+
   |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/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-28#post-3289172
   |update author  = MouseyPounds
+
   |update author  = staarfruit
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = More Galactic Galaxy Swords
+
   |original name  = Luna Cat
   |original author = Alliehxxx
+
   |original author = PoshPossum
   |original url    = {{nexus mod|2530}}
+
   |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-38#post-3298188
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
   |update author  = Arkanto
+
   |update author  = kngermanotta
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MunchItValency's Starter Pokemon
+
   |original name  = Lunatic Farm Map
   |original author = MunchItValency
+
   |original author = Lunatic
   |original url    = {{nexus mod|2151}}
+
   |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-45#post-3300239
+
   |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.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Munchkin Kitten Cat Replacement
+
   |original name  = LTTPBuildingsreplacer
   |original author = DaleighChronicle
+
   |original author = JazzMinK
   |original url    = {{nexus mod|2248}}
+
   |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-65#post-3306105
+
   |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  = Mushroom Tree Growth Re-Texture
+
   |original name  = Madeline's Farmhouse and Farm Building Recolors
   |original author = burtron
+
   |original author = Madeline
   |original url    = {{nexus mod|338}}
+
   |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-10#post-3276146
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
   |update author  = D.Grey
+
   |update author  = coldazrael & Allayna
   |update version  = 1.0
+
   |update version  = 5.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mushroom Tree Re-Texture
+
   |original name  = Magica Trees
   |original author = allanbachti
+
   |original author = ERRORcauser
   |original url    = {{nexus mod|1729}}
+
   |original url    = {{nexus mod|1211}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
 
   |update author  = D.Grey
 
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Mutated Cows with 2 Heads
+
   |original name  = Make Krobus Gaster
   |original author = StaticOpium
+
   |original author = DiStri
   |original url    = {{nexus mod|710}}
+
   |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-65#post-3306105
+
   |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  = MysticTempest's Furniture Mod
+
   |original name  = Makeup as Accessories
   |original author = MysticTempest
+
   |original author = Jinxiewinxie
   |original url    = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
+
   |original url    = {{nexus mod|183}}
   |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-28#post-3289541
   |update author  = MysticTempest
+
   |update author  = junali
   |update version  = 1.3.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = MysticTempest's Tea Mod
+
   |original name  = Make Love With Shane (Works with Co-op Mode)
   |original author = MysticTempest
+
   |original author = Kagurahime
   |original url    = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
+
   |original url    = {{nexus mod|917}}
   |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-129#post-3362721
   |update author  = MysticTempest
+
   |update author  = SamelaG
   |update version  = 1.0.1
+
   |update version  = 1.0.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nerdy Hot Maru
+
   |original name  = Marnie Edit
   |original author = tolerdesigns
+
   |original author = pipmimi
   |original url    = {{nexus mod|1029}}
+
   |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/#post-3258748
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3347432
   |update author  = MouseyPounds
+
   |update author  = Ches713
 
   |update version  = 1.2
 
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New and Improved Hairstyles
+
   |original name  = Marnie Romance
   |original author = Chrysanthe
+
   |original author = MrValuable
   |original url    = https://community.playstarbound.com/threads/new-and-improved-hairstyles.112097/
+
   |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-6#post-3273781
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3343163
   |update author  = D.Grey
+
   |update author  = vadie
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Cow Breeds
+
   |original name  = Marriage Dialogue Expansion - Eilliot
   |original author = Zhuria
+
   |original author = Sabreene
   |original url    = https://community.playstarbound.com/threads/new-cow-breeds.110272/
+
   |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-54#post-3303215
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3271742
   |update author  = coldazrael
+
   |update author  = ayahimew
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Dogs
+
   |original name  = Marriage Dialogue Mod for Haley
   |original author = Zhuria
+
   |original author = shann713
   |original url    = https://community.playstarbound.com/resources/new-dogs.3496/
+
   |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-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = coldazrael
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Handsome Elliott Portrait and Sprite
+
   |original name  = Marshmallow Unicorn
   |original author = sabreene
+
   |original author = jigajang
   |original url    = {{nexus mod|1676}}
+
   |original url    = {{chucklefish mod|3720}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-53#post-3302646
   |update author  = Allayna
+
   |update author  = Ches713
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Portraits Mod aka 微调立绘美化2.0 (Portrait Mod)
+
   |original name  = Marshmallow Unicorn (Alternative)
   |original author = ???
+
   |original author = summonercat
   |original url    = http://bbs.3dmgame.com/forum.php?mod=viewthread&tid=5058948
+
   |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-12#post-3278020
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
   |update author  = Pak_RT & D.Grey
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Rabbit Sprites and Recolours
+
   |original name  = Maru Replacer - earlier development version
   |original author = Zhuria
+
   |original author = Thoroughly
   |original url    = {{nexus mod|112}}
+
   |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-10#post-3276223
+
   |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 & Allayna
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Skintones
+
   |original name  = Maru Portrait's Retexture
   |original author = prettypinktardis
+
   |original author = HarinBAE
   |original url    = {{nexus mod|1231}}
+
   |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-6#post-3273805
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
   |update author  = tenthousandcats
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = New Spouse Rooms
+
   |original name  = Matching Maru Sprite (Villager Anime Portraits)
   |original author = abra700
+
   |original author = CassandraRose
   |original url    = {{nexus mod|713}}
+
   |original url    = {{nexus mod|1453}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
+
   |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  = Nicer Villagers, Flirty Bachelors
+
   |original name  = Matching Slime Hutch
   |original author = Kagurahime
+
   |original author = SlushieSlowpoke
   |original url    = {{nexus mod|872}}
+
   |original url    = {{nexus mod|111}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
 +
  |update author  = MouseyPounds
 +
  |update version  = 1.0-Final
 +
}}
 +
{{/xnb
 +
  |original name  = MCMC's Portrait Mod
 +
  |original author = MCMC
 +
  |original url    = https://community.playstarbound.com/threads/mcmc-portraits%EF%BC%88ver1-9%EF%BC%89.109112/
 
   |update name    = unofficial update
 
   |update 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  = Nightmare's Additional Weaponry
+
   |original name  = Medieval Traditional Hats
   |original author = zcsnightmare
+
   |original author = LemonEX
   |original url    = {{nexus mod|393}}
+
   |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/page-30#post-3291443
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-51#post-3301734
   |update author  = D.Grey
+
   |update author  = Mopsy
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nintendo Furniture - Furniture Only
+
   |original name  = Melons to Watermelons
  |original author = MrFox420
+
   |original author = zynonia
  |original url    = {{nexus mod|1973}}
+
   |original url    = {{nexus mod|1397}}
  |update name    = unofficial update
 
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-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 name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305179
 
   |update author  = Ensifera
 
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = No Glasses and Mustache Harvey Sprite
+
   |original name  = Memory Farm - Farm Map Layouts
   |original author = BraveLittleTuna
+
   |original author = Attitude Rains
   |original url    = {{nexus mod|1956}}
+
   |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-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-87#post-3323318
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = No More Bowlegs
+
   |original name  = Metal Worm Bin
   |original author = Chrysanthe
+
   |original author = vkunicorn
   |original url    = {{nexus mod|346}}
+
   |original url    = {{nexus mod|2675}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259723
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-75923
   |update author  = f4iTh
+
   |update author  = phomaique
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Non-Default Replacement Chickens
+
   |original name  = Mew - Cat Replacer
   |original author = Lavapulse
+
   |original author = 00Strange00
   |original url    = https://community.playstarbound.com/threads/non-default-replacement-chickens-silkie-orpington-barred-rock.109826/
+
   |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/#post-3258738
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = paradigmnomad
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Norisu's Cuter Goats Mod
+
   |original name  = Mimikyu - Cat Dog Replacer
   |original author = norisu
+
   |original author = ChiChain and SihaRakhet
   |original url    = {{nexus mod|1135}}
+
   |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-23#post-3285285
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357348
   |update author  = Oak
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Nostalgia Abigail
+
   |original name  = Minecraft Sword Styles
   |original author = Cilbas
+
   |original author = DarkKassanova
   |original url    = {{nexus mod|140}}
+
   |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-60#post-3304585
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Aquilegia
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = NongDarn Mods Portraits
+
   |original name  = Mint Kiss Furniture
   |original author = NongDarn
+
   |original author = Ribbonain
   |original url    = https://community.playstarbound.com/threads/mods-portraits-harvey-sam-sebastian-elliott-alex-by-nongdarn.111237/
+
   |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-47#post-3300583
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
   |update author  = netish
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Okami Chibiterasu Pet
+
   |original name  = Missy's Shirts
   |original author = Dibjib
+
   |original author = MissyDiabolical
   |original url    = {{nexus mod|152}}
+
   |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-8#post-3275462
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3303956
   |update author  = Heroic Onion
+
   |update author  = Kuriiyo & mukamii
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Owl Scarecrows
+
   |original name  = Missy's Walls and Floors
   |original author = Ankokou
+
   |original author = MissyDiabolical
   |original url    = {{nexus mod|936}}
+
   |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-11#post-3277776
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305998
   |update author  = Kuriiyo
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Peacocks
+
   |original name  = Mi's and Eemie's Butterflies (1.3)
   |original author = StarDoodle
+
   |original author = Mi/Campanulamis & Eemie
   |original url    = {{nexus mod|871}}
+
   |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-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
   |update author  = coldazrael
+
   |update author  = Oak
   |update version  = 2.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pastel Furniture
+
   |original name  = Mi's Bathroom Recolours
   |original author = BloodyJinxii
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1705}}
+
   |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-47#post-3300651
+
   |update url      = http://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/post-51298
   |update author  = Allayna
+
   |update author  = mouse
   |update version  = 1.0
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pencilstab's Portraits (ALL PORTRAITS COMPLETED)
+
   |original name  = Mi's Classy Victorian interior set inspired by eemie
   |original author = Pencilstab
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|2351}}
+
   |original url    = {{nexus mod|1074}}
   |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-8#post-3275117
   |update author  = Pencilstab
+
   |update author  = hwayunhae
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Expanded
+
   |original name  = Mi's Elegant Victorian interior
   |original author = Wolvenlight
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1372}}
+
   |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-3275828
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-4#post-51572
   |update author  = flameofthenight
+
   |update author  = mouse
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Expanded Marriage Dialogue
+
   |original name  = Mi's Fireplace (1.3)
   |original author = catacoon
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1275}}
+
   |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-5#post-3272993
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273636
   |update author  = flameofthenight
+
   |update author  = Seyph
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny Relationship (Villager Part Only)
+
   |original name  = Mi's Framed Butterfly and Insect Displays
   |original author = NicolasNSane
+
   |original author = Mi/Campanulamis
   |original url    = {{nexus mod|1568}}
+
   |original url    = {{nexus mod|1065}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-126#post-3358847
 +
  |update author  = Allayna
 +
  |update version  = 1.3
 +
}}
 +
{{/xnb
 +
  |original name  = Modern kitchen
 +
  |original author = Static Opium
 +
  |original url    = {{nexus mod|665}}
 
   |update name    = unofficial update
 
   |update 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/#post-7669
   |update author  = flameofthenight
+
   |update author  = Sofi52
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny to Pryce Personality Overhaul (Gender Swap)
+
   |original name  = Monster Valley
   |original author = Meevers
+
   |original author = Blizzriel
   |original url    = {{nexus mod|1253}}
+
   |original url    = {{nexus mod|2407}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305863
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299324
   |update author  = coldazrael
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Penny's New Look
+
   |original name  = Moogle Cat Replacement
   |original author = ARModding
+
   |original author = Cal
   |original url    = {{nexus mod|2610}}
+
   |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-62#post-3305303
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pet Raven
+
   |original name  = Moon Meteor 달 운석 리텍스쳐
   |original author = hassan94935
+
   |original author = 이얏호 ssm4031
   |original url    = {{nexus mod|1247}}
+
   |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-64#post-3305939
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-70203
   |update author  = Ensifera
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Pink Chickens
+
   |original name  = More Accessible Wilderness Farm
   |original author = bubblestormx
+
   |original author = gobbldygook
   |original url    = {{nexus mod|465}}
+
   |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-17#post-3280851
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287303
   |update author  = acornfaerie
+
   |update author  = junali
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Plastic Surgery for Your Goats
+
   |original name  = More Accurate Dwarf
   |original author = Eemie
+
   |original author = spacedoggity
   |original url    = {{nexus mod|502}}
+
   |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-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = coldazrael
+
   |update author  = MouseyPounds
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Porcelaine's Wizard - Portrait and Sprite
+
   |original name  = More Emo Sebastian
   |original author = Porcelaine
+
   |original author = Vienix
   |original url    = {{nexus mod|1940}}
+
   |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-33#post-3293999
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
   |update author  = Mukamii
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Portrait Accurate Alex
+
   |original name  = More Galactic Galaxy Swords
   |original author = iKeychain
+
   |original author = Alliehxxx
   |original url    = {{nexus mod|349}}
+
   |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-39#post-3298931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298188
   |update author  = Allayna & Amx
+
   |update author  = Arkanto
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Primitive Artisan Equipment
+
   |original name  = Morst-CERBERUS and SUPI
   |original author = Ankokou
+
   |original author = QuQii/songaoyuan
   |original url    = {{nexus mod|940}}
+
   |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-57#post-3304133
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-5#post-56273
   |update author  = kalikars & junali
+
   |update author  = marshallharck
   |update version  = 1.0.0
+
   |update version  = 1.5.4
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Purple Museum Reward Furniture
+
   |original name  = Mumps Mod
   |original author = Ariella
+
   |original author = KiraraLala
   |original url    = {{nexus mod|767}}
+
   |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-60#post-3304686
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-90#post-3324601
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rabbit's Foot to Usagi Mochi
+
   |original name  = MunchItValency's Starter Pokemon
   |original author = gelatinveins
+
   |original author = MunchItValency
   |original url    = {{nexus mod|1108}}
+
   |original url    = {{nexus mod|2151}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299425
+
   |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  = Ragdoll Cat Replacements
+
   |original name  = Munchkin Kitten Cat Replacement
   |original author = peroxidewren
+
   |original author = DaleighChronicle
   |original url    = https://community.playstarbound.com/threads/ragdoll-cats-pet-replacements.130437/
+
   |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-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.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Realistic Animal Replacements
+
   |original name  = Mushroom Tree Growth Re-Texture
   |original author = Crucifigo
+
   |original author = burtron
   |original url    = https://community.playstarbound.com/threads/new-free-to-edit-wips-crucifigos-livestock-semi-realistic-animal-replacers.109480/
+
   |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/#post-3259729
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
   |update author  = paradigmnomad
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Real Life Horses
+
   |original name  = Mushroom Tree Re-Texture
   |original author = Minakie
+
   |original author = allanbachti
   |original url    = {{nexus mod|759}}
+
   |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-4#post-3267236
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276146
   |update author  = jhunichi
+
   |update author  = D.Grey
   |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  = Mutated Cows with 2 Heads
   |original author = Sabreene
+
   |original author = StaticOpium
   |original url    = {{nexus mod|1701}}
+
   |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-10#post-3276212
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = waftwaffle
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Redesigned Horse Running Animation
+
   |original name  = My Little Valley - Farming is Magic - Mane Six Ponies
   |original author = avalitor
+
   |original author = Salendola
   |original url    = {{nexus mod|261}}
+
   |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-64#post-3305939
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = Ensifera
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Red Holsteins (Brown Cow)
+
   |original name  = MysticTempest's Furniture Mod
   |original author = Zhuria
+
   |original author = MysticTempest
   |original url    = {{nexus mod|47}}
+
   |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-12#post-3278037
+
   |update url      = https://community.playstarbound.com/threads/mystictempests-furniture-mod-updated-for-v1-3-w-multi-language-support.117035/
   |update author  = D.Grey
+
   |update author  = MysticTempest
   |update version  = 1.0
+
   |update version  = 1.3.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Red Panda Cat Replacement
+
   |original name  = MysticTempest's Tea Mod
   |original author = Tokiri
+
   |original author = MysticTempest
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
   |update name    = unofficial update
+
  |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-70#post-3307632
+
  |update url      = https://community.playstarbound.com/threads/mystictempests-tea-mod-updated-for-v1-3-w-multi-language-support.129850/
   |update author  = Reppamon
+
  |update author  = MysticTempest
   |update version  = 1.0
+
  |update version  = 1.0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Mythological Creatures: Horses
 +
  |original author = MysticTempest
 +
  |original url    = https://community.playstarbound.com/threads/mythological-creatures-horses.109498/
 +
   |update name    = unofficial update
 +
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-114#post-3342165
 +
   |update author  = pepoluan
 +
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Refined Bachelors Portrait Mod
+
   |original name  = Nerdy Hot Maru
   |original author = Chrysanthe
+
   |original author = tolerdesigns
   |original url    = {{nexus mod|938}}
+
   |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-26#post-3287131
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258748
   |update author  = paradigmnomad & D.Grey
+
   |update author  = MouseyPounds
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Refined Abigail, Emily and Maru Portraits
+
   |original name  = New and Improved Hairstyles
 
   |original author = Chrysanthe
 
   |original author = Chrysanthe
   |original url    = {{nexus mod|965}}
+
   |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-16#post-3280497
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273781
   |update author  = Amx
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Remove That Damn Rock
+
   |original name  = New Cow Breeds
   |original author = Androxilogin
+
   |original author = Zhuria
   |original url    = {{nexus mod|384}}
+
   |original url    = https://community.playstarbound.com/threads/new-cow-breeds.110272/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305769
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-54#post-3303215
   |update author  = Moragaine
+
   |update author  = coldazrael
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Ride Bear
+
   |original name  = New Dogs
   |original author = PenguinTuxedo
+
   |original author = Zhuria
   |original url    = {{nexus mod|793}}
+
   |original url    = {{chucklefish mod|3496}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Ride-able Chocobo (FF14 style!)
+
   |original name  = New Handsome Elliott Portrait and Sprite
   |original author = Kitsutsune
+
   |original author = sabreene
   |original url    = https://community.playstarbound.com/threads/ride-able-chocobo-ff14-style-lavender-coral-pink-ect-added.112156/
+
   |original url    = {{nexus mod|1676}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304796
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285313
   |update author  = Kuriiyo
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rikuo's Character Portrait
+
   |original name  = New Portraits Mod aka 微调立绘美化2.0 (Portrait Mod)
   |original author = Rikuo
+
   |original author = ???
   |original url    = {{nexus mod|231}}
+
   |original url    = http://bbs.3dmgame.com/forum.php?mod=viewthread&tid=5058948
 
   |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-12#post-3278020
   |update author  = paradigmnomad
+
   |update author  = Pak_RT & D.Grey
  |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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Roosters (Blue Chicken Replacement)
+
   |original name  = New Rabbit Sprites and Recolours
 
   |original author = Zhuria
 
   |original author = Zhuria
   |original url    = https://community.playstarbound.com/threads/roosters.125933/
+
   |original url    = {{nexus mod|112}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262895
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276223
   |update author  = paradigmnomad
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rose's Interior
+
   |original name  = New Shirts
   |original author = Roserish
+
   |original author = FANTUANTAIKA BAIRE
   |original url    = {{nexus mod|2715}}
+
   |original url    = {{nexus mod|2418}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-59#post-3304486
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-85#post-3322545
 
   |update author  = coldazrael
 
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 3.1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Trees Only)
+
   |original name  = New Skintones
   |original author = Ruevian
+
   |original author = prettypinktardis
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
+
   |original url    = {{nexus mod|1231}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3301953
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273805
   |update author  = sunnrock
+
   |update author  = tenthousandcats
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Fences and Craftables)
+
   |original name  = New Spouse Rooms
   |original author = Ruevian
+
   |original author = abra700
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
+
   |original url    = {{nexus mod|713}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302300
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-40#post-3299266
   |update author  = coldazrael
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Rusty Trough Fix
+
   |original name  = Nicer Villagers, Flirty Bachelors
   |original author = Zhuria
+
   |original author = Kagurahime
   |original url    = {{nexus mod|37}}
+
   |original url    = {{nexus mod|872}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
   |update author  = Ensifera
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sailor Moon Wands
+
   |original name  = Nightmare's Additional Weaponry
   |original author = kumarisuchan
+
   |original author = zcsnightmare
   |original url    = {{nexus mod|1687}}
+
   |original url    = {{nexus mod|393}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299332
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-30#post-3291443
   |update author  = Allayna
+
   |update author  = D.Grey
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sakura's Cat Girls
+
   |original name  = Nightmare's Raptors
   |original author = Sakurasflavor
+
   |original author = zcsnightmare
   |original url    = {{nexus mod|1245}}
+
   |original url    = https://community.playstarbound.com/threads/velociraptor-horse-replacements.112475/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-94#post-3326541
   |update author  = coldazrael
+
   |update author  = minervamaga
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam - New Hair and Jacket
+
   |original name  = Nightmare's Tools Retextured
   |original author = ktruong
+
   |original author = zcsnightmare
   |original url    = {{nexus mod|898}}
+
   |original url    = {{nexus mod|296}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277589
+
   |update url      = {{nexus mod|7649}}
   |update author  = D.Grey
+
   |update author  = RedxMoonxRose
   |update version  = 1.0
+
   |update version  = 1.3
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam Gets a Makeover
+
   |original name  = Nightmare's Weapon Retextures
   |original author = Tyrian
+
   |original author = zcsnightmare
   |original url    = {{nexus mod|1694}}
+
   |original url    = {{nexus mod|287}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-33#post-3293999
+
   |update url      = {{nexus mod|7650}}
   |update author  = Mukamii
+
   |update author  = RedxMoonxRose
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sam's Hair Makeover
+
   |original name  = Nintendo Furniture - Furniture Only
   |original author = Chrysanthe
+
   |original author = MrFox420
   |original url    = {{nexus mod|360}}
+
   |original url    = {{nexus mod|1973}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304686
   |update author  = Ensifera
+
   |update author  = coldazrael
   |update version  = 1.0
+
   |update version  = 1.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Saturnspace's All Villagers Portraits Mod
+
   |original name  = No Emo Hair Sebastian
   |original author = Saturnspace
+
   |original author = hybridrainbow
   |original url    = {{nexus mod|614}}
+
   |original url    = {{nexus mod|716}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/attachments/cp-saturnspaces-all-villagers-portraits-mod-zip.206152/
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304988
   |update author  = aaronson2012
+
   |update author  = Ensifera
   |update version  = 1.0.0
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian - New Hair and Moto Jacket
+
   |original name  = No Glasses and Mustache Harvey Sprite
   |original author = ktruong
+
   |original author = BraveLittleTuna
   |original url    = {{nexus mod|877}}
+
   |original url    = {{nexus mod|1956}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259170
+
   |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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian is a Ginger (Complete Edits Only)
+
   |original name  = No Kids Room Decor
   |original author = melkat7
+
   |original author = Plutey
   |original url    = {{nexus mod|561}}
+
   |original url    = {{nexus mod|369}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-79#post-3315459
   |update author  = D.Grey
+
   |update author  = mouseypounds
   |update version  = 1.0
+
   |update version  = 1.12.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Foresty Farm Buildings
+
   |original name  = No More Bowlegs
   |original author = miizuki1512
+
   |original author = Chrysanthe
   |original url    = {{nexus mod|1502}}
+
   |original url    = {{nexus mod|346}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272444
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341316
   |update author  = hatmouse
+
   |update author  = pepoluan
   |update version  = 1.0
+
   |update version  = 1.0.0-unofficial.2-pepoluan
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Vanilla Buildings
+
   |original name  = Non-Default Replacement Chickens
   |original author = magimatica
+
   |original author = Lavapulse
   |original url    = {{nexus mod|928}}
+
   |original url    = https://community.playstarbound.com/threads/non-default-replacement-chickens-silkie-orpington-barred-rock.109826/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273575
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
   |update author  = D.Grey
+
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Seasonal Gold Clock
+
   |original name  = Norisu's Cuter Goats Mod
   |original author = Endohare
+
   |original author = norisu
   |original url    = {{nexus mod|1771}}
+
   |original url    = {{nexus mod|1135}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299515
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285285
   |update author  = Arkanto
+
   |update author  = Oak
   |update version  = 1.1
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sebastian Dialogue Overhaul
+
   |original name  = Norisu's Fire Chickens Mod
   |original author = casualkira
+
   |original author = norisu
   |original url    = {{nexus mod|1505}}
+
   |original url    = {{nexus mod|1156}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-26#post-3287117
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-109#post-3338955
   |update author  = paradigmnomad
+
   |update author  = Bondzgurl
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Secret of Evermore Prehistoric Dog
+
   |original name  = Nostalgia Abigail
   |original author = Skyhacker
+
   |original author = Cilbas
   |original url    = {{nexus mod|347}}
+
   |original url    = {{nexus mod|140}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-43#post-3299931
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304585
   |update author  = Allayna
+
   |update author  = Aquilegia
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shaney-er Marriage Dialogue
+
   |original name  = NongDarn Mods Portraits
   |original author = Seismothesaurus
+
   |original author = NongDarn
   |original url    = {{nexus mod|1287}}
+
   |original url    = https://community.playstarbound.com/threads/mods-portraits-harvey-sam-sebastian-elliott-alex-by-nongdarn.111237/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306798
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-101#post-3332738
   |update author  = Ensifera
+
   |update author  = netish
 
   |update version  = 1.1
 
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shirtless Alex
+
   |original name  = NukaCola
   |original author = bluestarkiller
+
   |original author = GameVogue
   |original url    = {{nexus mod|1186}}
+
   |original url    = {{nexus mod|394}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-113#post-3341519
   |update author  = Ensifera
+
   |update author  = a2937
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shoe Color Replacement
+
   |original name  = Okami Chibiterasu Pet
   |original author = irowirow
+
   |original author = Dibjib
   |original url    = {{nexus mod|330}}
+
   |original url    = {{nexus mod|152}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-23#post-3285230
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-8#post-3275462
   |update author  = D.Grey, Oak
+
   |update author  = Heroic Onion
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Short Haired Haley
+
   |original name  = Ori's Portraits(High resolution version)
   |original author = Zoragonn101
+
   |original author = Ori
   |original url    = {{nexus mod|1620}}
+
   |original url    = {{nexus mod|2974}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3277227
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-86#post-3323222
   |update author  = D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shorter Haired Sebastian
+
   |original name  = Original Portraits ULTIMATE FIX
   |original author = Chrysanthe
+
   |original author = Popori
   |original url    = {{nexus mod|159}}
+
   |original url    = {{nexus mod|801}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305707
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-128#post-3361673
   |update author  = Ensifera
+
   |update author  = springacres
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Shorts for Ladies
+
   |original name  = Owl Scarecrows
   |original author = Meevers
+
   |original author = Ankokou
   |original url    = {{nexus mod|225}}
+
   |original url    = {{nexus mod|936}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-24#post-3286325
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277776
   |update author  = junali
+
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slate Shed Recolor
+
   |original name  = Pam's Recolored Buildings Add-Ons
   |original author = Asunai
+
   |original author = Pam Collins AKA MatrexsVigil
   |original url    = {{nexus mod|2540}}
+
   |original url    = {{nexus mod|4313}}
   |update name    = unofficial update
+
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-38#post-3298309
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348428
   |update author  = Arkanto
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 0.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Siberian Huskey Dog Replacement
+
   |original name  = Pastel Furniture
   |original author = Joules
+
   |original author = BloodyJinxii
   |original url    = {{nexus mod|1855}}
+
   |original url    = {{nexus mod|1705}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262682
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357809
   |update author  = TimeWandrer
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 2.0.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Silo Replacement
+
   |original name  = Pastel Pink Farmhouse
   |original author = ???
+
   |original author = midnightroar
   |original url    = ???
+
   |original url    = {{nexus mod|154}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3276044
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = twixstix
+
   |update author  = Marigolden
   |update version  = 1.0
+
   |update version  = 1.2-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Skitty Cat Replacement
+
   |original name  = Peacocks
   |original author = Kiakakash
+
   |original author = StarDoodle
   |original url    = {{nexus mod|264}}
+
   |original url    = {{nexus mod|871}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305886
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 +
  |update version  = 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
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slightly Cuter Character Sprites
+
   |original name  = Penny Expanded
   |original author = Poltergeister
+
   |original author = Wolvenlight
   |original url    = {{nexus mod|1437}}
+
   |original url    = {{nexus mod|1372}}
 
   |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-130#post-3366935
   |update author  = HanFox
+
   |update author  = uwuchiha
   |update version  = 1.8
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slime Animals
+
   |original name  = Penny Expanded Marriage Dialogue
   |original author = Sabishi1985
+
   |original author = catacoon
   |original url    = https://community.playstarbound.com/threads/slime-animals-last-update-09-10-2016.110931/
+
   |original url    = {{nexus mod|1275}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258724
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-5#post-3272993
   |update author  = paradigmnomad
+
   |update author  = flameofthenight
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Slime Cute Kitty Cat Retexture
+
   |original name  = Penny Relationship and Dialogue Overhaul
   |original author = hisameartwork
+
   |original author = NicolasNSane
   |original url    = {{nexus mod|2058}}
+
   |original url    = {{nexus mod|1568}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-11#post-3277759
+
   |update url      = {{nexus mod|4761}}
   |update author  = Kuriiyo
+
   |update author  = NicolaiB92
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Skin Colours Tweaked
+
   |original name  = Penny Sprite Alternate Hairstyle
   |original author = MissyDiabolical
+
   |original author = Kuujho
   |original url    = {{nexus mod|1506}}
+
   |original url    = {{nexus mod|3166}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-47#post-3300524
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-84#post-3321993
   |update author  = Isalami
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Small Farm
+
   |original name  = Penny to Pryce Personality Overhaul (Gender Swap)
   |original author = HelleboreHel
+
   |original author = Meevers
   |original url    = {{nexus mod|1518}}
+
   |original url    = {{nexus mod|1253}}
 
   |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-64#post-3305863
   |update author  = Allayna
+
   |update author  = coldazrael
   |update version  = 1.2
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Smiling Krobus
+
   |original name  = Penny's New Look
   |original author = UpsetSaturn
+
   |original author = ARModding
   |original url    = {{nexus mod|274}}
+
   |original url    = {{nexus mod|2610}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
 
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305303
Line 3,232: Line 4,068:
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Furniture
+
   |original name  = Pet Raven
   |original author = Serpentwined
+
   |original author = hassan94935
   |original url    = {{nexus mod|227}}
+
   |original url    = {{nexus mod|1247}}
 
   |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-64#post-3305939
   |update author  = coldazrael
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Kitchen, Bed and Fireplace
+
   |original name  = Pet Totoro
   |original author = Serpentwined
+
   |original author = magimatica
   |original url    = {{nexus mod|155}}
+
   |original url    = {{nexus mod|1271}}
 
   |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-88#post-3323500
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Gothic Wallpapers and Floorings
+
   |original name  = Piano
   |original author = Serpentwined
+
   |original author = Jokerine
   |original url    = {{nexus mod|171}}
+
   |original url    = {{nexus mod|465}}
 
   |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-108#post-3338258
   |update author  = coldazrael
+
   |update author  = pepoluan
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spooky Scary Creatures
+
   |original name  = Piebald horse
   |original author = Petulinda
+
   |original author = MysticJumbles
   |original url    = {{nexus mod|1436}}
+
   |original url    = {{nexus mod|2467}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306172
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3365079
   |update author  = coldazrael
+
   |update author  = cat9412
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Spouse Rooms Redesigned
+
   |original name  = Pink Chickens
   |original author = endermaryn
+
   |original author = bubblestormx
   |original url    = {{nexus mod|828}}
+
   |original url    = {{nexus mod|658}}
 
   |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-17#post-3280851
   |update author  = Fyn
+
   |update author  = acornfaerie
   |update version  = 6.0
+
   |update version  = 1.0
}}
+
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stable Replacement
+
   |original name  = Plastic Surgery for Your Goats
   |original author = FrauHaselmaus
+
   |original author = Eemie
   |original url    = https://community.playstarbound.com/threads/frauhaselmaus-workshop-many-many-retextures-example-grasspaths.109701/
+
   |original url    = {{nexus mod|502}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-56#post-3304011
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306105
   |update author  = kngermanotta
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Lottery Letters
+
   |original name  = Player Home Detailed
   |original author = Jokerine
+
   |original author = PandoWooSetti AKA TheGeekyDead
   |original url    = {{nexus mod|335}}
+
   |original url    = {{nexus mod|301}}
 
   |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-118#post-3348738
   |update author  = brybryj
+
   |update author  = Marigolden
   |update version  = 2.0
+
   |update version  = 1.3-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Shortcuts - Saloon and Hospital Bypass
+
   |original name  = Plump Abigail
   |original author = scrptrx
+
   |original author = Dizor
   |original url    = {{nexus mod|510}}
+
   |original url    = {{nexus mod|104}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305765
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-130#post-3364975
   |update author  = Ensifera
+
   |update author  = cat9412
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Valley Ranch Lord Wind Portraits MOD
+
   |original name  = Pochi's Portraits Mod
   |original author = MAKIKO
+
   |original author = Pochi
   |original url    = {{nexus mod|1827}}
+
   |original url    = {{nexus mod|1684}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3305863
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-112#post-3340148
   |update author  = coldazrael
+
   |update author  = pepoluan
   |update version  = 1.11
+
   |update version  = 1.1.1-unofficial.1-pepoluan
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stardew Valley Senbby and Sam
+
   |original name  = Porcelaine's Wizard - Portrait and Sprite
   |original author = Kikii_Saam
+
   |original author = Porcelaine
   |original url    = {{nexus mod|2538}}
+
   |original url    = {{nexus mod|1940}}
 
   |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-33#post-3293999
   |update author  = coldazrael
+
   |update author  = Mukamii
   |update version  = 1.3
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Stargrime - Visual Overhaul
+
   |original name  = Portrait Accurate Alex
   |original author = mudpuppy8
+
   |original author = iKeychain
   |original url    = {{nexus mod|848}}
+
   |original url    = {{nexus mod|349}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306203
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-39#post-3298931
   |update author  = coldazrael
+
   |update author  = Allayna & Amx
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = StardewValley Anime Mods
+
   |original name  = Portraits 42 people
   |original author = OhoDavi
+
   |original author = Fastoso
   |original url    = {{nexus mod|1839}}
+
   |original url    = {{nexus mod|616}}
 
   |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-3348345
   |update author  = coldazrael
+
   |update author  = helenaneedshugs
   |update version  = 0.3
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = StardewValley_Girl-byAdarin
+
   |original name  = Prettier Small Farm
   |original author = AdarinSinner
+
   |original author = E_Wang aka Flor3nce2456
   |original url    = {{nexus mod|474}}
+
   |original url    = {{nexus mod|1545}}
 
   |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-105#post-3335725
   |update author  = ZidanReign
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.0.0-unofficial.1-minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Starry Sky Interface
+
   |original name  = Primitive Artisan Equipment
   |original author = Walpi-chan
+
   |original author = Ankokou
   |original url    = {{nexus mod|1310}}
+
   |original url    = {{nexus mod|940}}
   |update name    = unofficial update
+
   |update name    = official update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-6#post-3273486
+
   |update url      = https://www.nexusmods.com/stardewvalley/mods/4005
   |update author  = Rosalie
+
   |update author  = tlitookilakin
   |update version  = 1.0
+
   |update version  = 1.0.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Studio Ghibli Re-Textures (Scarecrows)
+
   |original name  = Purple Museum Reward Furniture
   |original author = Crazy_Leen
+
   |original author = Ariella
   |original url    = https://community.playstarbound.com/threads/studio-ghibli-re-textures.109939/
+
   |original url    = {{nexus mod|767}}
 
   |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-60#post-3304686
   |update author  = MitcheII
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Suffolk Sheep Recolor
+
   |original name  = Rabbit In A Hat
   |original author = The13thBlackCat
+
   |original author = PixelatedPicasso
   |original url    = {{nexus mod|1076}}
+
   |original url    = {{nexus mod|4681}}
 
   |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-120#post-3352297
   |update author  = D.Grey
+
   |update author  = mouse
   |update version  = 1.0
+
   |update version  = 0.0.2-unofficial.1-mouse
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Super Short Grass
+
   |original name  = Rabbit's Foot to Usagi Mochi
   |original author = joyous1ariella
+
   |original author = gelatinveins
   |original url    = {{nexus mod|768}}
+
   |original url    = {{nexus mod|1108}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-62#post-3305179
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-42#post-3299425
   |update author  = Ensifera
+
   |update author  = Allayna
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Swans and Dodos (excludes Aptonoth)
+
   |original name  = Ragdoll Cat Replacements
   |original author = Kitsutsune
+
   |original author = peroxidewren
   |original url    = https://community.playstarbound.com/threads/swans-and-dodos-and-aptonoth.111758/
+
   |original url    = https://community.playstarbound.com/threads/ragdoll-cats-pet-replacements.130437/
 
   |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-3#post-3264159
   |update author  = paradigmnomad
+
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Greenhouse
+
   |original name  = Rainbow Galaxy Sword
   |original author = Various
+
   |original author = Sirenity
   |original url    = https://community.playstarbound.com/threads/sweet-greenhouse-your-greenhouse-more-sweety.113426/
+
   |original url    = {{nexus mod|1204}}
 
   |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://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-3#post-44301
   |update author  = Oak
+
   |update author  = UlyanaLeyana
   |update version  = 1.0
+
   |update version  = 2.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Talking Sam
+
   |original name  = Ran's Fancy Farmer
   |original author = Kagurahime
+
   |original author = Ran
   |original url    = {{nexus mod|890}}
+
   |original url    = {{nexus mod|2718}}
 
   |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://forums.stardewvalley.net/threads/unofficial-mod-updates.2096/page-73#post-50242
   |update author  = paradigmnomad
+
   |update author  = wally32
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Sweet Talking Sebastian
+
   |original name  = Realistic Animal Replacements
   |original author = Kagurahime
+
   |original author = Crucifigo
   |original url    = {{nexus mod|929}}
+
   |original url    = https://community.playstarbound.com/threads/new-free-to-edit-wips-crucifigos-livestock-semi-realistic-animal-replacers.109480/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3260520
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3259729
 
   |update author  = paradigmnomad
 
   |update author  = paradigmnomad
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Taco Bones: Item+Crop graphics
+
   |original name  = Realistic Cellar Size
   |original author = Boneberry
+
   |original author = Cylesburk
   |original url    = https://community.playstarbound.com/threads/taco-bones-item-crop-graphics-over-30-itens-done.126565/
+
   |original url    = {{nexus mod|1474}}
 
   |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-129#post-3363816
   |update author  = acornfaerie
+
   |update author  = grapefruitcult
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tan and Green Velociraptor
+
   |original name  = Real Life Horses
   |original author = zcsnightmare
+
   |original author = Minakie
   |original url    = {{nexus mod|251}}
+
   |original url    = {{nexus mod|759}}
 
   |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-4#post-3267236
   |update author  = brybryj & Allayna
+
   |update author  = jhunichi
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tank Mod
+
   |original name  = Recolored Buildings - Smaller Silos - Alt Brick House - Rainbow colors
   |original author = AllyJamy
+
   |original author = Develsaa
   |original url    = {{nexus mod|837}}
+
   |original url    = {{nexus mod|98}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-65#post-3306239
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-118#post-3348428
   |update author  = coldazrael
+
   |update author  = Marigolden
   |update version  = 1.1
+
   |update version  = 0.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tego's Less Vibrant Grass and Dirt
+
   |original name  = Recolored Luau and Moonlight Jellies Candle Boats to match the Beach and Desert Recolors Mod - combined
   |original author = Various
+
   |original author = Sabreene
   |original url    = {{nexus mod|244}}
+
   |original url    = {{nexus mod|1701}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = http://www.mediafire.com/file/7a270vd3ci08azz/%5BCP%5D+Less+Vibrant.zip
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-10#post-3276212
   |update author  = Oak
+
   |update author  = waftwaffle
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Texas Longhorn
+
   |original name  = Recolored stone paths
   |original author = rlgenung
+
   |original author = taintedwheat
   |original url    = {{nexus mod|490}}
+
   |original url    = https://community.playstarbound.com/threads/recolored-stone-paths.117439/#post-2946389
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-3#post-44222
   |update author  = coldazrael
+
   |update author  = Kreeate
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tiny Tree Tappers
+
   |original name  = Redesigned Horse Running Animation
   |original author = kallisto
+
   |original author = avalitor
   |original url    = {{nexus mod|1679}}
+
   |original url    = {{nexus mod|261}}
 
   |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-64#post-3305939
   |update author  = coldazrael
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Togepi Cat Replacement
+
   |original name  = Red Holsteins (Brown Cow)
   |original author = CrimsonY _Alreadytaken on this site apparently_
+
   |original author = Zhuria
   |original url    = {{nexus mod|1234}}
+
   |original url    = {{nexus mod|47}}
 
   |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-12#post-3278037
   |update author  = Allayna
+
   |update author  = D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Cat (Red Panda)
+
   |original name  = Redone Dialogue
   |original author = Tokiri
+
   |original author = prettypinktardis
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|1447}}
 
   |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-114#post-3341805
   |update author  = Astartez
+
   |update author  = .Lavender.
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Dog (Fox)
+
   |original name  = Refined Bachelors Portrait Mod
   |original author = Tokiri
+
   |original author = Chrysanthe
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|938}}
 
   |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-26#post-3287131
   |update author  = magicalgirl44
+
   |update author  = paradigmnomad & D.Grey
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tokiri's Pet Replacements - Horse (Ridable wolf)
+
   |original name  = Refined Abigail, Emily and Maru Portraits
   |original author = Tokiri
+
   |original author = Chrysanthe
   |original url    = https://community.playstarbound.com/threads/tokiris-pet-replacements-fox-wolf-red-panda-update-red-panda-finished.110263/
+
   |original url    = {{nexus mod|965}}
 
   |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-16#post-3280497
   |update author  = magicalgirl44
+
   |update author  = Amx
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tool Icon Replacement
+
   |original name  = Remove That Damn Rock
   |original author = workingorder
+
   |original author = Androxilogin
   |original url    = {{nexus mod|401}}
+
   |original url    = {{nexus mod|384}}
 
   |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/updating-mods-for-stardew-valley-1-4.156000/page-14#post-3353498
   |update author  = D.Grey
+
   |update author  = minervamaga
   |update version  = 1.0
+
   |update version  = 1.1.1-unofficial.1-minervamaga
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Totoro Ghibli Anime Water Obelisk retexture
+
   |original name  = Revised Alex Cutscene
   |original author = hisameartwork
+
   |original author = IronZelly
   |original url    = {{nexus mod|1843}}
+
   |original url    = https://community.playstarbound.com/threads/revised-alex-8-heart-cutscene.130207/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-63#post-3305648
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-124#post-3357242
   |update author  = coldazrael
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Traditional Japanese Homes
+
   |original name  = Ride Bear
   |original author = honochan
+
   |original author = PenguinTuxedo
   |original url    = {{nexus mod|2295}}
+
   |original url    = {{nexus mod|793}}
 
   |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-64#post-3305886
   |update author  = f4iTh
+
   |update author  = coldazrael
   |update version  = 1.0.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Tweaked Penny Portrait
+
   |original name  = Ride-able Chocobo (FF14 style!)
   |original author = magimatica
+
   |original author = Kitsutsune
   |original url    = {{nexus mod|860}}
+
   |original url    = https://community.playstarbound.com/threads/ride-able-chocobo-ff14-style-lavender-coral-pink-ect-added.112156/
 
   |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-60#post-3304796
   |update author  = Amx
+
   |update author  = Kuriiyo
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vanilla Child Recolors
+
   |original name  = Rikuo's Character Portrait
   |original author = bitcrushpupp
+
   |original author = Rikuo
   |original url    = {{nexus mod|1914}}
+
   |original url    = {{nexus mod|231}}
 
   |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-25#post-3286931
   |update author  = Aquilegia
+
   |update author  = paradigmnomad
   |update version  = 1.0
+
   |update version  = 4.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Variant Anime Portraits
+
   |original name  = Rocky Junimo Hut
   |original author = Bunnihime
+
   |original author = Gweniaczek
   |original url    = {{nexus mod|48}}
+
   |original url    = {{nexus mod|1870}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304778
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/#post-3258738
   |update author  = coldazrael
+
   |update author  = paradigmnomad
   |update version  = 3.5
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Villagers Anime Portrait
+
   |original name  = Roman Bath House Retexture
   |original author = Bunnihime
+
   |original author = Rauchschwalbe
   |original url    = {{nexus mod|97}}
+
   |original url    = https://community.playstarbound.com/threads/bath-house-retexture.140922/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304778
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-117#post-3348341
   |update author  = coldazrael, Fyn & f4iTh
+
   |update author  = Marigolden
   |update version  = 2.0
+
   |update version  = 1.1-unofficial.1-Marigolden
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vintage Menu Interface
+
   |original name  = Roosters (Blue Chicken Replacement)
   |original author = Mana
+
   |original author = Zhuria
   |original url    = {{nexus mod|1244}}
+
   |original url    = https://community.playstarbound.com/threads/roosters.125933/
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-50#post-3301284
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-2#post-3262895
   |update author  = dreamsicl
+
   |update author  = paradigmnomad
   |update version  = 1.4
+
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Visual Crossing Sprite Overhaul
+
   |original name  = Rose's Interior
   |original author = k2sync
+
   |original author = Roserish
   |original url    = https://community.playstarbound.com/threads/visual-crossing-sprite-overhaul-villager-farmer-edits.142549/
+
   |original url    = {{nexus mod|2715}}
 
   |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-59#post-3304486
   |update author  = paradigmnomad
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Vulpix as Cat (Alolan)
+
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Trees Only)
   |original author = Alola Vulpix Is Life
+
   |original author = Ruevian
   |original url    = {{nexus mod|2302}}
+
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
 
   |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-52#post-3301953
   |update author  = Allayna
+
   |update author  = sunnrock
   |update version  = 1.0
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Wee Highland Coos
+
   |original name  = Rue's Creepy Curios and Spooky Aesthetics (Fences and Craftables)
   |original author = telekineticyeti
+
   |original author = Ruevian
   |original url    = {{nexus mod|60}}
+
   |original url    = https://community.playstarbound.com/threads/rues-creepy-curios-and-spooky-aesthetics-updated-11-7.126419
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-64#post-3306010
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-52#post-3302300
   |update author  = coldazrael & D.Grey
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Wedding Dresses and Red Shirts!
+
   |original name  = Rusty Trough Fix
   |original author = Hitgirl911
+
   |original author = Zhuria
   |original url    = https://community.playstarbound.com/resources/wedding-dresses-and-red-shirts.3725/
+
   |original url    = {{nexus mod|37}}
 
   |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-64#post-3305765
   |update author  = coldazrael
+
   |update author  = Ensifera
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = White Ducks
+
   |original name  = Safety Net Slime Hutch
   |original author = Merc931
+
   |original author = Plutey
   |original url    = {{nexus mod|498}}
+
   |original url    = {{nexus mod|621}}
 
   |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-118#post-3349511
   |update author  = D.Grey
+
   |update author  = Jhoulana
   |update version  = 1.0
+
   |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = White Water Farm
+
   |original name  = Sailor Moon Wands
   |original author = Meevers
+
   |original author = kumarisuchan
   |original url    = {{nexus mod|1293}}
+
   |original url    = {{nexus mod|1687}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-9#post-3275665
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-41#post-3299332
   |update author  = Pathoschild
+
   |update author  = Allayna
   |update version  = 1.1.1-unofficial.1-pathoschild
+
   |update version  = 1.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Wild Doves - Brown Bird Replacement
+
   |original name  = Sakamoto san - Cat Replacer
   |original author = Ebenaceae
+
   |original author = RedHunter
   |original url    = {{nexus mod|693}}
+
   |original url    = {{nexus mod|62}}
 
   |update name    = unofficial update
 
   |update name    = unofficial update
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-60#post-3304980
+
   |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-120#post-3352201
   |update author  = coldazrael
+
   |update author  = ravenrakkuas
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = WildSpirits Pet Replacements
+
   |original name  = Sakura's Cat Girls
   |original author = WildSpirits
+
   |original author = Sakurasflavor
   |original url    = https://community.playstarbound.com/threads/pet-replacements.107853/
+
   |original url    = {{nexus mod|1245}}
 
   |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-65#post-3306105
   |update author  = Azrax
+
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
   |original name  = Winery/Brewery Retexture Mod
+
   |original name  = Sam - New Hair and Jacket
   |original author = Dentrala & sheetcakeghost
+
   |original author = ktruong
   |original url    = https://community.playstarbound.com/threads/winery-brewery-retexture-mod-assets-completed.114143/page-7
+
   |original url    = {{nexus mod|898}}
   |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/page-11#post-3277589
   |update author  = andiluxe
+
   |update author  = D.Grey
   |update version  = 1.0
+
   |update version  = 1.0
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = Witch Broom and Hat
+
   |original name  = Sam Gets a Makeover
   |original author = strawberrymilk95
+
   |original author = Tyrian
   |original url    = {{nexus mod|499}}
+
   |original url    = {{nexus mod|1694}}
   |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-33#post-3293999
   |update author  = junali
+
   |update author  = Mukamii
   |update version  = 1.0
+
   |update version  = 1.0
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = Witch Hats
+
   |original name  = Sam's Hair Makeover
   |original author = 7yrsofbadluck
+
   |original author = Chrysanthe
   |original url    = {{nexus mod|612}}
+
   |original url    = {{nexus mod|360}}
   |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-64#post-3305765
   |update author  = mukamii
+
   |update author  = Ensifera
   |update version  = 1.0
+
   |update version  = 1.0
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = Witchy Decorations
+
   |original name  = Sam Short Hair
   |original author = ManaKirel
+
   |original author = jessicasoosh
   |original url    = {{nexus mod|1515}}
+
   |original url    = {{nexus mod|1124}}
   |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-70#post-3307508
   |update author  = Allayna
+
   |update author  = Seyph
   |update version  = 1.0
+
   |update version  = 1.0.1
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = Witchy-Gothic Buildings
+
   |original name  = Sam/Sebastian Romance Mod Sambastian
   |original author = strawberrymilk95
+
   |original author = Pixelated Farmhouse
   |original url    = {{nexus mod|420}}
+
   |original url    = https://pixelatedfarmhouse.tumblr.com/post/190537323066/samsebastian-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-16#post-3280803
+
   |update url      = https://forums.stardewvalley.net/threads/migrating-xnb-mods-to-content-patcher-packs.564/page-6#post-71693
   |update author  = acornfaerie
+
   |update author  = Allayna
   |update version  = 1.0
+
   |update version  = 1.4
}}
+
}}
{{/xnb
+
{{/xnb
   |original name  = Witchy-Gothic Interior
+
   |original name  = Saturnspace's All Villagers Portraits Mod
   |original author = strawberrymilk95
+
   |original author = Saturnspace
   |original url    = {{nexus mod|432}}
+
   |original url    = {{nexus mod|614}}
   |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/attachments/cp-saturnspaces-all-villagers-portraits-mod-zip.206152/
   |update author  = acornfaerie
+
   |update author  = aaronson2012
   |update version  = 1.0
+
   |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
 
{{/xnb
Line 3,734: Line 5,551:
 
   |update author  = coldazrael
 
   |update author  = coldazrael
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Yellow Dirt Removal
 +
  |original author = Ebeths
 +
  |original url    = {{nexus mod|766}}
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-125#post-3358277
 +
  |update author  = Allayna
 +
  |update version  = 1.2
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,770: Line 5,596:
 
   |update author  = staarfruit
 
   |update author  = staarfruit
 
   |update version  = 1.0
 
   |update version  = 1.0
 +
}}
 +
{{/xnb
 +
  |original name  = Yet Another Crystal Path Recolor
 +
  |original author = Lavendarjosh
 +
  |original url    = {{nexus mod|1717}}
 +
  |update name    = Yet Another Crystal Path Recolor (CP)
 +
  |update url      = {{nexus mod|8721}}
 +
  |update author  = UlyanaLeyana
 +
  |update version  = 2.1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,778: Line 5,613:
 
   |update url      = {{nexus mod|1853}}
 
   |update url      = {{nexus mod|1853}}
 
   |update author  = Marilyst
 
   |update author  = Marilyst
   |update version  = 1.0
+
   |update version  = 1.3.1
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,806: Line 5,641:
 
   |update author  = Ensifera
 
   |update author  = Ensifera
 
   |update version  = 0.1
 
   |update version  = 0.1
 +
}}
 +
{{/xnb
 +
  |original name  = Zhuria's Horse Edits
 +
  |original author = Zhuria
 +
  |original url    = https://community.playstarbound.com/threads/zhurias-horse-edits-recolours.108022/
 +
  |update name    = unofficial update
 +
  |update url      = https://community.playstarbound.com/threads/migrating-xnb-mods-to-content-patcher-packs.141577/page-22#post-3284987
 +
  |update author  = Allayna
 +
  |update version  = 1.0
 
}}
 
}}
 
{{/xnb
 
{{/xnb
Line 3,838: Line 5,682:
 
==Using XNB mods==
 
==Using XNB mods==
 
===Find mods===
 
===Find mods===
If you're looking for mods, the [http://www.nexusmods.com/stardewvalley/mods/topalltime/ most popular] are a good place to start.
 
  
You can find mods in a few places:
+
See [[Modding:Player_Guide/Getting_Started#Find_mods|Find mods]] on the Getting Started page.
{| class="wikitable"
 
|-
 
! site
 
! description
 
|-
 
| '''[http://nexusmods.com/stardewvalley/ Nexus Mods]'''
 
| Most mods are released here.<br /><small>(Registering an account is free, just don't choose a package when you register.)</small>
 
|-
 
| [http://community.playstarbound.com/resources/categories/stardew-valley.22/ Chucklefish mods]
 
| Some mods are released here (most are also on Nexus).
 
|-
 
| [http://community.playstarbound.com/forums/mods.215/ Stardew Valley forums]
 
| Some mods are posted directly in the forums. Some hidden gems are only here, but finding them can be a challenge.
 
|}
 
 
 
Before you download a mod...
 
* Does it work with the latest version of the game? XNB mods may be outdated and cause problems. Try checking the mod description or comments. Generally avoid any XNB mod not updated after the last game update.
 
* Don't download from stardewvalleymods.net. (Mods here are usually outdated, since the site republishes mods without permission for ad revenue.)
 
  
 
===Install mods===
 
===Install mods===
Line 3,864: Line 5,689:
  
 
# Download the XNB mod and unzip it somewhere (not in your game folder!).
 
# Download the XNB mod and unzip it somewhere (not in your game folder!).
# It should contain some <tt>.xnb</tt> files.
+
# It should contain some <samp>.xnb</samp> files.
# Find your [[Modding:Game folder|game folder]].
+
# Find your [[Modding:Player Guide/Getting Started#Find your game folder|game folder]].
# Replace the existing <tt>.xnb</tt> files under <tt>Content</tt> with the ones from the mod. '''Make sure you replace the correct files!''' There are different files with the same name (like <tt>Content/Data/hats.xnb</tt> and <tt>Content/Characters/hats.xnb</tt>), and replacing the wrong file will cause in-game errors or crashes.
+
# Replace the existing <samp>.xnb</samp> files under <samp>Content</samp> with the ones from the mod. '''Make sure you replace the correct files!''' There are different files with the same name (like <samp>Content/Data/hats.xnb</samp> and <samp>Content/Characters/hats.xnb</samp>), and replacing the wrong file will cause in-game errors or crashes.
  
 
===Uninstall mods===
 
===Uninstall mods===
Line 3,884: Line 5,709:
  
 
[[Category:Modding]]
 
[[Category:Modding]]
 +
 +
[[de:Modding:XNB Mods]]
 +
[[es:Modding:Uso de mods XNB]]
 +
[[pt:Modificações:Usando mods XNB]]
 +
[[ru:Модификации:Использование XNB модификаций]]
 +
[[zh:模组:使用 XNB 模组]]

Latest revision as of 18:38, 24 April 2024

Index

XNB mods are an older type of mod and are no longer recommended. SMAPI can't validate them for compatibility. Use XNB mods at your own risk, or see alternatives using Content Patcher.

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

FAQs

What are XNB mods?

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

Why are they discouraged?

XNB mods have a lot of limitations, often conflict with each other, usually break when the game updates, are hard to install and remove, etc.

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

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

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

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

Can they corrupt my save?

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

Do they disable Steam achievements?

Nope.

Alternatives using Content Patcher

Content Patcher is a SMAPI mod that makes XNB-like changes with all the benefits of SMAPI content packs. Many XNB mods have a Content Patcher equivalent, or have been updated unofficially to use it. Consider using these instead where available.

Modders:

  • When migrating XNB mods, only use Action: Load if you actually need to replace the whole file (e.g., portrait mods). Don't use Action: Load for dialogue mods or to change a small part of a file!
  • See Migrating XNB mods to Content Patcher packs on the official forums for more info about creating conversions.

Using XNB mods

Find mods

See Find mods on the Getting Started page.

Install mods

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

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

Uninstall mods

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

Troubleshooting

Reset content files

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

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

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

Other issues

See Modding:Player Guide/Troubleshooting for more suggestions.