commit a375cc345373e836f7d136cb51da229af2c99307 Author: Donovan Daniels Date: Thu May 30 06:47:05 2024 -0500 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b1c8b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/dist diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1cbbc83 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "json.format.enable": false +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..23533d1 --- /dev/null +++ b/README.md @@ -0,0 +1,52 @@ +# Yiffy Beds +Replaces the default bed textures with yiff. Supports 1.12+ + +### Sources +* [white](https://e621.net/posts/2308551) +* [light_gray](https://e621.net/posts/1428168) +* [gray](https://e621.net/posts/2179381) +* [black](https://e621.net/posts/520280) +* [brown](https://e621.net/posts/285576) +* [red](https://e621.net/posts/680775) +* [orange](https://e621.net/posts/1391357) +* [yellow](https://e621.net/posts/979894) +* [lime](https://e621.net/posts/1976008) +* [green](https://e621.net/posts/2416598) +* [cyan](https://e621.net/posts/2364029) +* [light_blue](https://e621.net/posts/2397890) +* [blue](https://e621.net/posts/314664) +* [purple](https://e621.net/posts/1957635) +* [magenta](https://e621.net/posts/1933688) +* [pink](https://e621.net/posts/2170200) + +### Examples + + +
+All Colors + +| Color | Image | Source | +|:----------:|:--------------------------------------:|:----------------------------------------:| +| White | ![White](examples/white.png) | [Source](https://e621.net/posts/2308551) | +| Light Gray | ![Light Gray](examples/light_gray.png) | [Source](https://e621.net/posts/1428168) | +| Gray | ![Gray](examples/gray.png) | [Source](https://e621.net/posts/2179381) | +| Black | ![Black](examples/black.png) | [Source](https://e621.net/posts/520280) | +| Brown | ![Brown](examples/brown.png) | [Source](https://e621.net/posts/285576) | +| Red | ![Red](examples/red.png) | [Source](https://e621.net/posts/680775) | +| Orange | ![Orange](examples/orange.png) | [Source](https://e621.net/posts/1391357) | +| Yellow | ![Yellow](examples/yellow.png) | [Source](https://e621.net/posts/979894) | +| Lime | ![Lime](examples/lime.png) | [Source](https://e621.net/posts/1976008) | +| Green | ![Green](examples/green.png) | [Source](https://e621.net/posts/2416598) | +| Cyan | ![Cyan](examples/cyan.png) | [Source](https://e621.net/posts/2364029) | +| Light Blue | ![Light Blue](examples/light_blue.png) | [Source](https://e621.net/posts/2397890) | +| Blue | ![Blue](examples/blue.png) | [Source](https://e621.net/posts/314664) | +| Purple | ![Purple](examples/purple.png) | [Source](https://e621.net/posts/1957635) | +| Magenta | ![Magenta](examples/magenta.png) | [Source](https://e621.net/posts/1933688) | +| Pink | ![Pink](examples/pink.png) | [Source](https://e621.net/posts/2170200) | +
+ +### Development + +Compiling the packs relies on the [build-packs](https://git.furry.cool/MCFurryPacks/PackFormatter) binary. + +See the information there for how to configure it. Simply run `build-packs` in the repository directory and the compiled packs will be in `dist`. diff --git a/common/assets/minecraft/textures/entity/bed/black.png b/common/assets/minecraft/textures/entity/bed/black.png new file mode 100644 index 0000000..1b9580e Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/black.png differ diff --git a/common/assets/minecraft/textures/entity/bed/blue.png b/common/assets/minecraft/textures/entity/bed/blue.png new file mode 100644 index 0000000..95ff6a5 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/blue.png differ diff --git a/common/assets/minecraft/textures/entity/bed/brown.png b/common/assets/minecraft/textures/entity/bed/brown.png new file mode 100644 index 0000000..348a05f Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/brown.png differ diff --git a/common/assets/minecraft/textures/entity/bed/cyan.png b/common/assets/minecraft/textures/entity/bed/cyan.png new file mode 100644 index 0000000..165eb73 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/cyan.png differ diff --git a/common/assets/minecraft/textures/entity/bed/gray.png b/common/assets/minecraft/textures/entity/bed/gray.png new file mode 100644 index 0000000..1ce9ad8 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/gray.png differ diff --git a/common/assets/minecraft/textures/entity/bed/green.png b/common/assets/minecraft/textures/entity/bed/green.png new file mode 100644 index 0000000..9ac9d78 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/green.png differ diff --git a/common/assets/minecraft/textures/entity/bed/light_blue.png b/common/assets/minecraft/textures/entity/bed/light_blue.png new file mode 100644 index 0000000..99d0167 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/light_blue.png differ diff --git a/common/assets/minecraft/textures/entity/bed/light_gray.png b/common/assets/minecraft/textures/entity/bed/light_gray.png new file mode 100644 index 0000000..97c929f Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/light_gray.png differ diff --git a/common/assets/minecraft/textures/entity/bed/lime.png b/common/assets/minecraft/textures/entity/bed/lime.png new file mode 100644 index 0000000..13097b1 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/lime.png differ diff --git a/common/assets/minecraft/textures/entity/bed/magenta.png b/common/assets/minecraft/textures/entity/bed/magenta.png new file mode 100644 index 0000000..ecc0da2 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/magenta.png differ diff --git a/common/assets/minecraft/textures/entity/bed/orange.png b/common/assets/minecraft/textures/entity/bed/orange.png new file mode 100644 index 0000000..6d8d234 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/orange.png differ diff --git a/common/assets/minecraft/textures/entity/bed/pink.png b/common/assets/minecraft/textures/entity/bed/pink.png new file mode 100644 index 0000000..9013215 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/pink.png differ diff --git a/common/assets/minecraft/textures/entity/bed/purple.png b/common/assets/minecraft/textures/entity/bed/purple.png new file mode 100644 index 0000000..862536f Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/purple.png differ diff --git a/common/assets/minecraft/textures/entity/bed/red.png b/common/assets/minecraft/textures/entity/bed/red.png new file mode 100644 index 0000000..023c2c4 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/red.png differ diff --git a/common/assets/minecraft/textures/entity/bed/white.png b/common/assets/minecraft/textures/entity/bed/white.png new file mode 100644 index 0000000..5d2fb68 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/white.png differ diff --git a/common/assets/minecraft/textures/entity/bed/yellow.png b/common/assets/minecraft/textures/entity/bed/yellow.png new file mode 100644 index 0000000..f24ea42 Binary files /dev/null and b/common/assets/minecraft/textures/entity/bed/yellow.png differ diff --git a/common/pack.png b/common/pack.png new file mode 100644 index 0000000..01b4635 Binary files /dev/null and b/common/pack.png differ diff --git a/examples/all.png b/examples/all.png new file mode 100644 index 0000000..07b4f17 Binary files /dev/null and b/examples/all.png differ diff --git a/examples/black.png b/examples/black.png new file mode 100644 index 0000000..c79352a Binary files /dev/null and b/examples/black.png differ diff --git a/examples/blue.png b/examples/blue.png new file mode 100644 index 0000000..9161790 Binary files /dev/null and b/examples/blue.png differ diff --git a/examples/brown.png b/examples/brown.png new file mode 100644 index 0000000..7d59937 Binary files /dev/null and b/examples/brown.png differ diff --git a/examples/cyan.png b/examples/cyan.png new file mode 100644 index 0000000..ee07409 Binary files /dev/null and b/examples/cyan.png differ diff --git a/examples/gray.png b/examples/gray.png new file mode 100644 index 0000000..d48978f Binary files /dev/null and b/examples/gray.png differ diff --git a/examples/green.png b/examples/green.png new file mode 100644 index 0000000..f57f337 Binary files /dev/null and b/examples/green.png differ diff --git a/examples/light_blue.png b/examples/light_blue.png new file mode 100644 index 0000000..ed16d56 Binary files /dev/null and b/examples/light_blue.png differ diff --git a/examples/light_gray.png b/examples/light_gray.png new file mode 100644 index 0000000..f8a15c1 Binary files /dev/null and b/examples/light_gray.png differ diff --git a/examples/lime.png b/examples/lime.png new file mode 100644 index 0000000..e4fc24b Binary files /dev/null and b/examples/lime.png differ diff --git a/examples/megenta.png b/examples/megenta.png new file mode 100644 index 0000000..6def8dc Binary files /dev/null and b/examples/megenta.png differ diff --git a/examples/orange.png b/examples/orange.png new file mode 100644 index 0000000..1bd80f2 Binary files /dev/null and b/examples/orange.png differ diff --git a/examples/pink.png b/examples/pink.png new file mode 100644 index 0000000..e9966ea Binary files /dev/null and b/examples/pink.png differ diff --git a/examples/purple.png b/examples/purple.png new file mode 100644 index 0000000..89293b3 Binary files /dev/null and b/examples/purple.png differ diff --git a/examples/red.png b/examples/red.png new file mode 100644 index 0000000..5be36ff Binary files /dev/null and b/examples/red.png differ diff --git a/examples/white.png b/examples/white.png new file mode 100644 index 0000000..869902b Binary files /dev/null and b/examples/white.png differ diff --git a/examples/yellow.png b/examples/yellow.png new file mode 100644 index 0000000..df71c6e Binary files /dev/null and b/examples/yellow.png differ diff --git a/info.json b/info.json new file mode 100644 index 0000000..6ca6717 --- /dev/null +++ b/info.json @@ -0,0 +1,21 @@ +{ + "name": "yiffy Beds", + "description": "Replaces bed textures with furry porn.", + "url": "https://git.furry.cool/MCFurryPacks/YiffyBeds", + "versions": [ + ["1.12", 3], + ["1.13", 4], + ["1.15", 5], + ["1.16", 6], + ["1.17", 7], + ["1.18", 8], + ["1.19", 9], + ["1.19.3", 12], + ["1.19.4", 13], + ["1.20", 15], + ["1.20.2", 18], + ["1.20.3", 26], + ["1.20.5", 32] + ], + "exports": [] +}