New Style Squid
# New Style Squid
**Hi!**
This pack updates plain squids to match their glowy friends!

**Hope you like it!**
© 2021 Daggsy ∘ [CC-BY-NC-ND](https://creativecommons.org/licenses/by-nc-nd/4.0/)
# New Style Squid
**Hi!**
This pack updates plain squids to match their glowy friends!

**Hope you like it!**
© 2021 Daggsy ∘ [CC-BY-NC-ND](https://creativecommons.org/licenses/by-nc-nd/4.0/)
# **New Hearts, classic colors**
**Not a fan of the pastel hearts in the [New Hearts](https://modrinth.com/resourcepack/new-hearts) texture pack?**
**This texture pack is for you.**
—

—
# **New Hearts**
**Don’t like the bright colors of the hearts?**
**This texture pack is for you.**
—

—
## **Description**
**Pastel-colored hearts with softer color transitions.**
—
**Texture pack in classic colors: [New Hearts, classic colors](https://modrinth.com/resourcepack/new-hearts-classic-colors)**
Gives all default armors the look of netherite. UPDATED FOR 1.0-1.22+
Variants:
Ashen 16x https://modrinth.com/resourcepack/netherite-styled-ashen-16x-armors
Bare Bones https://modrinth.com/resourcepack/netherite-styled-bare-bones-armors
Bronze https://modrinth.com/resourcepack/bronze-netherite-styled-armor
SimpleOres https://modrinth.com/resourcepack/simpleores-netherite-styled-armor
View the whole collection here! https://modrinth.com/collection/J5xlug9g
Subscribe to Subsetgaming on YouTube
https://www.youtube.com/@subset.gaming
Type “Subsetg4ming” in your search bar to find everything by me!
Negan’s bat

Description: This resource pack replaces the diamond sword with Negan’s bat from “The Walking Dead”.
Version: 1.00
License: This project is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. You may share and adapt the work, but not use it for commercial purposes. For more details, visit https://creativecommons.org/licenses/by-nc-sa/4.0/.
Disclaimer: This is a fan-made project. The original character Negan and the bat “Lucille” are properties of AMC and the creators of “The Walking Dead”. This project is not endorsed by or affiliated with AMC or the creators of “The Walking Dead”.
Does not require any mods, Works on vanilla Minecraft
# NBTRecipes
#### A very simple plugin to add recipes that use NBT data.
## Description
Plugin designed to simplify creation of custom recipes, without the need writing any code or touching datapacks.
You can attach common data (amount, name, lore) as well as NBT tags to items processed by the recipes.
Format is very similar to the one used by datapacks.
## Usage
You can place your recipes inside the `recipes` folder in the plugin folder.
If you want to organize your recipes in subfolders you can do it, the plugin will search for recipes in every subfolder of the `recipes` folder.
The plugin will automatically load all the recipes in the subfolders and add their relative path to the recipe namespaced key.
To create a recipe just create a text file with the `.json` extension and put it in the `recipes` folder.
Edit the file with your favorite text editor and put the recipe in it as shown in the examples below.
### Config
In the config you can change the namespace of your recipes and all the messages of the plugin.
The namespace can only contain the following characters: `a-z`, `0-9`, `_`, `-`, `/`.
### Commands
* `/nbtrecipes reload` – Reloads the recipes and the config file.
* `nbtr.command` Permission needed to use the command.
* `/nbtrecipes list` – Lists all the recipes added by this plugin.
* `nbtr.command` Permission needed to use the command.
## Examples
Examples and more detailed description of plugin components.
### Item
This is an object that represents an item in the recipes, it can be used as an ingredient or as a result. Majority of fields are optional, in fact, the only one needed is the `material`.
When only `material` field is defined, and no other items within the choice requires any metadata (name, lore, nbt), items in the recipe are matched by material.
*See below examples for more details.*
### Discover Trigger
Recipe trigger can make any recipe to be discoverable by players, by picking up an item.
Field `discover` is optional and if not specified, recipe will be discovered and visible by default.
*See below examples for more details.*
### Shaped Recipe
Shaped recipe applies to crafting table and inventory crafting.
“`json5
{
“type”: “crafting_shaped”,
// Crafting pattern. Array must consist of either:
// – two, two-character elements reflecting an inventory crafting grid.
// – three, three-character elements reflecting a crafting table grid.
“pattern”: [
” D”,
” D “,
“S ”
],
// Key to the pattern.
“key”: {
“S”: [
// Multiple item choices can be specified for one ingredient.
// In case metadata (name/lore/nbt) is attached to an item, all choices are matched as EXACT.
{ “material”: “stick” },
{ “material”: “blaze_rod” }
],
//
“D”: { “material”: “diamond” }
},
// Recipe result.
“result”: {
“material”: “diamond_sword”,
“amount”: 1,
“name”: “Diagonally Crafted Diamond Sword”,
“lore”: [
“As the name suggests…”
],
“nbt”: “{CustomModelData: 2}”
},
// Recipe discover trigger. Optional.
“discover”: {
// Items to be picked-up before this recipe is “discovered” by the player.
“items”: [
{ “material”: “diamond” }
]
}
}
“`
Field `discover` is optional.
### Shapeless Recipe
Shapeless recipe applies to crafting table and inventory crafting.
“`json5
{
“type”: “crafting_shapeless”,
// Crafting ingredients.
“ingredients”: [
// Multiple item choices can be specified for one ingredient.
// In case metadata (name/lore/nbt) is attached to an item, all choices are matched as EXACT.
[
{ “material”: “oak_log” },
{ “material”: “spruce_log” },
{ “material”: “birch_log” },
{ “material”: “jungle_log” },
{ “material”: “acacia_log” },
{ “material”: “dark_oak_log” },
{ “material”: “mangrove_log” },
{ “material”: “cherry_log” }
],
{ “material”: “flint_and_steel” }
],
// Recipe result.
“result”: { “material”: “charcoal” },
// Recipe discover trigger. Optional.
“discover”: {
// Items to be picked-up before this recipe is “discovered” by the player.
“items”: [
{ “material”: “oak_log” },
{ “material”: “spruce_log” },
{ “material”: “birch_log” },
{ “material”: “jungle_log” },
{ “material”: “acacia_log” },
{ “material”: “dark_oak_log” },
{ “material”: “mangrove_log” },
{ “material”: “cherry_log” }
]
}
}
“`
Field `discover` is optional.
### Smelting Recipes
Smelting recipes can be applied to regular furnace, blast furnace, smoker or campfire.
“`json5
{
// Recipe type. For furnace recipes you can use one of: [SMELTING, BLASTING, SMOKING, CAMPFIRE_COOKING]
“type”: “smelting”,
// Furnace input.
“input”: [
// Multiple item choices can be specified for one ingredient.
// In case metadata (name/lore/nbt) is attached to an item, all choices are matched as EXACT.
{ “material”: “diamond_helmet” },
{ “material”: “diamond_chestplate” },
{ “material”: “diamond_leggings” },
{ “material”: “diamond_boots” }
],
// Recipe result.
“result”: { “material”: “diamond” },
// Experience to award player after taking smelting result. Optional.
“experience”: 0.7,
// Time it takes to cook this recipe. Measured in ticks. Optional.
“cooking_time”: 200,
// Recipe discover trigger. Optional.
“discover”: {
// Items to be picked-up before this recipe is “discovered” by the player.
“items”: [
{ “material”: “diamond_helmet” },
{ “material”: “diamond_chestplate” },
{ “material”: “diamond_leggings” },
{ “material”: “diamond_boots” }
]
}
}
“`
All furnace recipe types follow the same schema.
– `smelting` – recipe for regular furnace.
– `blasting` – recipe for blast furnace.
– `smoking` – recipe for smoker.
– `campfire_cooking` – recipe for campfire.
Fields `experience`, `cooking_time` and `discover` are optional.
### Smithing Recipe
Smithing recipe applies to smithing table.
“`json5
{
“type”: “smithing”,
// Base item, you can think of it as an item which upgrades (could) be applied to. More than one item choice can be specified.
“base”: { “material”: “iron_pickaxe” },
// Template item, you can think of it as an upgrade which is applied to the base item. More than one item choice can be specified.
// This field works only when running 1.20 or higher.
“template”: { “material”: “air” },
// Addition item. For vanilla recipes, it’s usually a trim material. More than one item choice can be specified.
“addition”: { “material”: “diamond” },
// Recipe result. Metadata is not supported as it’s copied directly from the base item.
“result”: { “material”: “diamond_pickaxe” },
// Recipe discover trigger. Optional.
“discover”: {
// Items to be picked-up before this recipe is “discovered” by the player.
“items”: [
{ “material”: “iron_pickaxe” }
]
}
}
“`
Metadata (name, lore, nbt) is not supported for result items, as it’s copied directly from the base item.
Field `discover` is optional.
## Contributing
To contribute to this repository just fork this repository make your changes or add your code and make a pull request.
If you find an error or a bug you can open an issue [here](https://github.com/LoreSchaeffer/NBTRecipes/issues).
## License
NBTRecipes is released under “The 3-Clause BSD License”. You can find a copy [here](https://github.com/LoreSchaeffer/NBTRecipes/blob/master/LICENSE).es/blob/master/LICENSE).

### What is this?
This is a plugin that allows your player to found a company. (Actually it is just like a guild or clan plugin)
The owner(as well as employer) can employ other players to be the employees for the company.
Every day the company will be taxed and giving salary to the employer and employees.
The plugin is not finished as my expectation. Company’s chestshop[DONE], employee orders[DONE] and permission giving[DONE] will be added in the plugin as soon as possible. I posted the resource here just for saving update logs.
Vault is required and PlaceholderAPI is optional.
Only support YAML Storage now. (MySQL in future)





### Plans before v1.0
Chest Shop [DONE]
Custom Position [DONE]
Employee’s Permission [DONE]
Employee Orders [BASICALLY DONE]
Company’s Building with area protection plugin supported [WILL BE ADJUSTED]
In Game Menu [BASICALLY DONE]
Mysql support (maybe)
### Commands
<> required argument, [] optional argument
/myc ? [page] View help
/myc found
/myc disband Disband the company
/myc employ
/myc dismiss
/myc info [companyId] See the information of the company
/myc balance [companyId] View asset of the company
/myc position set
/myc position add
/myc position remove
/myc position setlabel
### Placeholders (PlaceholderAPI needed)
> For players (Only show if the player has company) <
%mycompany_player_cid% Player company Id
%mycompany_player_company% Player company Name
%mycompany_player_position% Player position name (not labelled)
%mycompany_player_salary% Player salary amount $$
%mycompany_player_employer% Player's employer
> For corresponding company <
%mycompany_company_
%mycompany_company_
%mycompany_company_
%mycompany_company_
%mycompany_company_
%mycompany_company_
%mycompany_company_
%mycompany_company_
%mycompany_company_
%mycompany_company_


**The same tracks you love but played with live instruments or edited to be streamable!**
# PREVIEW HERE:
# **Artist Credit**
Jackson Parodi
Kaiser Musik Symphony
CellOver
Lucas D. Piano
Aether & Chaos
Patti Broussard
Ludi
DG Pianos
HumphreyGaming
Sheet Music Boss
Elijah Kohan
Joe Porter
Jukebox Minecraft
Montechait
Julia Dina
Luffi
Andrew Stump
Peter Russo
Nihhiu
Matt Krupa
Kade Kalka
Lucky Sevyn
Dimitrius Films
Sombre Velleity
Alex Gustaf
Jarrod G
HIGH Z Production
Oxart
**Thank you to each of these amazing individuals for permission to use their covers!**
# Other Projects

https://modrinth.com/datapack/horror-ambience-music-echoes
https://www.curseforge.com/minecraft/texture-packs/horror-ambience-music

https://modrinth.com/resourcepack/horror-ambience-music-2-forgotten-tunes
https://www.curseforge.com/minecraft/texture-packs/horror-ambience-music-forgotten-tunes

https://modrinth.com/resourcepack/primeval-music
https://www.curseforge.com/minecraft/texture-packs/primeval-music
# **SPONSOR**

Get 15% Off you’re first month with Kinetic Hosting at https://billing.kinetichosting.net/aff.php?aff=80
CODE: Jrinc
**NOT COMPATIBLE WITH MTR 4.0**
🇪🇸 **Metro Madrid Minecraft (MMM) Resource Pack v1.19.2**
> ¡Bienvenido a Metro Madrid Minecraft (MMM)! Sumérgete en la emocionante experiencia del metro de Madrid en Minecraft con nuestro resource pack oficial. Este pack ha sido creado para ofrecerte una inmersión total en el sistema de transporte público de la capital española.
>
> En Metro Madrid Minecraft (MMM), encontrarás una amplia variedad de modelos de trenes personalizados que reflejan fielmente la flota del metro de Madrid, desde los clásicos trenes de la Serie 2000 hasta los más modernos de la Serie 9000. Cada vehículo ha sido cuidadosamente diseñado para proporcionarte una experiencia de viaje emocionante y realista.
>
> Mantente informado en todo momento con nuestros PIDs detallados, que muestran información precisa sobre destinos, tiempos de espera y mensajes de servicio. Además, explora estaciones que capturan la esencia del metro de Madrid con texturas realistas de azulejos, letreros y señalizaciones.
>
> Nuestro resource pack es de uso libre y está completamente compatible con la versión 1.19.2 de Metro Madrid Minecraft (MMM). Ya sea que desees explorar las vastas redes subterráneas o simplemente disfrutar del paisaje urbano, nuestro pack ofrece una experiencia auténtica y emocionante para todos los jugadores.
>
> ¡Descarga ahora el resource pack oficial de Metro Madrid Minecraft (MMM) y prepárate para una emocionante aventura por las vías del metro de Madrid en Minecraft!
🇺🇸 **Metro Madrid Minecraft (MMM) Resource Pack v1.19.2**
> Welcome to Metro Madrid Minecraft (MMM)! Immerse yourself in the exciting experience of the Madrid metro in Minecraft with our official resource pack. This pack has been created to offer you a complete immersion in the public transportation system of the Spanish capital.
>
> In Metro Madrid Minecraft (MMM), you will find a wide variety of custom train models that faithfully reflect the fleet of the Madrid metro, from the classic Series 2000 trains to the most modern Series 9000. Each vehicle has been carefully designed to provide you with an exciting and realistic travel experience.
>
> Stay informed at all times with our detailed PIDs, which display accurate information about destinations, wait times, and service messages. Additionally, explore stations that capture the essence of the Madrid metro with realistic textures of tiles, signs, and signage.
>
> Our resource pack is free to use and fully compatible with version 1.19.2 of Metro Madrid Minecraft (MMM). Whether you want to explore the vast underground networks or simply enjoy the urban landscape, our pack offers an authentic and exciting experience for all players.
>
> Download the official resource pack of Metro Madrid Minecraft (MMM) now and get ready for an exciting adventure through the Madrid metro tracks in Minecraft!
*Older versions are not and will not be supported*
# *YOU CAN FIND THE PLUGIN DESCRIPTION AS TEXT BELOW*

# MrUltimateLottery
⚠️ **Dependency:** This plugin requires **Vault** to function.
MrUltimateLottery is a fully customizable **automatic lottery system** for Minecraft servers.
Lotteries start automatically at a specific hour or at repeating intervals. Players can purchase tickets during the active period, and when the timer ends a winner is selected.
Perfect for adding an engaging economy-based feature to your server.
—
## Features
– Automatic lottery start at configured times
– Support for repeating lottery intervals
– Player ticket purchasing system
– Fully configurable ticket price
– Customizable GUI menu
– Economy integration using **Vault**
– Player statistics tracking
– Placeholder support
– Admin commands to control the lottery
—
## Main Menu Preview
The plugin provides a simple GUI where players can:
– Buy lottery tickets
– View their ticket count
– Check their winning chance
– See the current lottery status
– Refresh the lottery information
—
## Placeholders
You can use these placeholders with placeholder plugins such as PlaceholderAPI.
“`
%mrultimatelottery_status% – Returns inactive or active
%mrultimatelottery_participants% – Returns the current participants in the active lottery
%mrultimatelottery_time_left% – Returns the time remaining until the lottery ends
%mrultimatelottery_ticket_price% – Returns the current price of one ticket
%mrultimatelottery_total_tickets% – Returns the current number of tickets in the lottery
%mrultimatelottery_player_tickets% – Returns the player’s ticket count
%mrultimatelottery_player_wins% – Returns the player’s total wins
%mrultimatelottery_player_win_rate% – Returns the player’s chance to win the lottery
“`
—
## Commands
“`
/lottery gui – Opens the lottery menu
/lottery buy – Buy lottery tickets
/lottery stats – Shows player lottery statistics
/lottery status – Displays current lottery information
/mul start – Force start a lottery
/mul stop – Stop the current lottery
/mul reload – Reload plugin configuration
“`
—
## Permissions
“`
mrultimatelottery.maxtickets.
Allows a player to purchase a defined maximum number of tickets.
mrultimatelottery.gui
Allows access to /lottery gui
mrultimatelottery.stats
Allows access to /lottery stats
mrultimatelottery.stats.others
Allows viewing stats of other players
mrultimatelottery.status
Allows access to /lottery status
mrultimatelottery.admin
Allows access to all /mul admin commands
“`