Legend’s Fakemon
# 🌌 Legend’s Fakemon – Cobblemon Datapack
## 🌐 Language / Idioma
🇬🇧 English
—
A **Cobblemon datapack** focused on adding **new forms and alternate versions of existing Pokémon**, with plans to expand into **original Fakemon** in the future.
This project is currently in active development, with many ideas and features planned for upcoming updates. There is still a long journey ahead, and continuous improvements will be made over time.
—
## 🎨 Credits & Inspiration
The **base model** for Zyvelta’s design is taken from:
🔗 https://modrinth.com/datapack/hydro-reanimodel-pack
All **credits** go to the original creator of that project.
—
## 👤 About Me
I am an **independent datapack creator**:
– 🗣️ Native Spanish speaker
– 🌍 Fluent in English
—
## ❤️ Support the Project
If you enjoy this project and want to support its development, you can do so on Patreon:
🔗 https://www.patreon.com/c/legendsfakemon?vanity=user
Your support helps me continue creating new content, improving existing features, and bringing more Fakemon to life. Every contribution means a lot!
—
## 💬 Community & Contact
⚠️ If you use the project for any type of thing, give credit to the creator
Stay updated or get in touch through Discord:
🔗 https://discord.gg/bENKuCnh
—
🇪🇸 Español
—
Un **datapack para Cobblemon** enfocado en añadir **nuevas formas y versiones alternativas de Pokémon existentes**, con planes de crear **Fakemon originales** en el futuro.
El proyecto se encuentra actualmente en desarrollo activo, con muchas ideas y contenido planeado para futuras actualizaciones. Aún queda bastante camino por recorrer y seguirá mejorando con el tiempo.
—
## 🎨 Créditos e Inspiración
El **modelo base** del diseño de Zyvelta está tomado de:
🔗 https://modrinth.com/datapack/hydro-reanimodel-pack
Todos los **créditos** pertenecen al creador original del proyecto.
—
## 👤 Quién Soy
Soy un **creador independiente de datapacks**:
– 🗣️ Español nativo
– 🌍 También hablo inglés
—
## ❤️ Apoya el Proyecto
Si te gusta este proyecto y quieres apoyar su desarrollo, puedes hacerlo en Patreon:
🔗 https://www.patreon.com/c/legendsfakemon?vanity=user
Tu apoyo me ayuda a seguir creando nuevo contenido, mejorar lo existente y dar vida a más Fakemon. ¡Cada aportación cuenta muchísimo!
—
## 💬 Comunidad y Contacto
⚠️ Si usas el proyecta para cualquier tipo de cosa da creditos al creador
Para mantenerte al tanto o contactarme, entra al Discord:
🔗 https://discord.gg/bENKuCnh
—
LavishlyOptimized
LavishlyOptimized
By
UltimatChamp
## Modern optimizations for snapshots, based on Simply Optimized!
This modpack is aimed to provide immense performance to Minecraft snapshots, as soon as possible, with no extra/QOL features! It is based on modern technologies and improves your game’s experience.
If you find any issue/bug or want to suggest any feature, you can issue a Bug Report 🐞/ Suggestion 🤝, here!


🧪Versioning
This project uses **semantic versioning**.
**Format:**
`X`.`Y`.`Z`+``.``
**Definitions:**
(a) _Project Version_
1. **`X`:** MAJOR version _(Not likely to change; for a long time!)_
2. **`Y`:** MINOR version _(Will change frequently; For new MC versions/Big updates)_
3. **`Y`:** PATCH version _(Will change very frequently; Small changes/Mod updates/…)_
(b) _Build Metadata_
1. **``:** **Value(s):** `fabric` [Don’t have any plans for `quilt`, `neo` or `forge`, currently]
2. **``:** **Examples:** `23w14a`, `23w04a`, `24w03b` and so on…
## 🎲Mods Used
This project uses basically all the projects from **Simply Optimized**, with some of my own additions! You can see all the mods under the dependencies section!
This project will frequently use unofficial/untested builds of mods, whether they might be official unstable builds or from PRs. The original projects will do be credited by being marked as **’Added via overrides’**!
## 🤔FAQs:
> Why **Lavishly**?
As said before, this project will frequently use unofficial/untested builds of mods, to bring optimizations to snapshots, as soon as possible! This means that, these versions of the modpack may be very unstable!
The optimizations will be ***lavishly*** unstable!
> Doesn’t **HyperSoop** release their own snapshot builds?
Yes, they do! But these snapshots versions are released only when there’s a lot of hype about these snapshots, and when the official Minecraft release is going to drop soon! It means that they release these builds when most mods available are mostly stable!
The _motto_ of this project is to release versions as soon as a new snapshot drops! Most of the versions of this project are not meant to be played in your main singleplayer world; but if you do want to, it is always recommended to make backups before updating!
## 💎Credits!
This project is based on Simply Optimized, under the Apache License 2.0!
## 📜License
Check the complete license here: Apache License 2.0!
Larger Ore Veins: Deluxe
### Join our discord to report bugs and make suggestions.
The Larger Ore Veins: Deluxe combines the Classic, Diamond, and Nether editions into a single data pack as well as bringing lapis and redstone ore generation to match the larger ore vein generation style.
### Notice
This is a world generation data pack. World generation data packs work best when added to your world during the world creation phase. You can still add them to your world after generating it, you just need to generate new chunks to see the effects.
## Modifying this pack
– Download the **datapack version** of the project
– Unzip the pack
– Open the unzipped folder.
To modify the size of the ores, go to `data/minecraft/worldgen/configured_feature` and change the `size` value in the desired JSON files (The maximum size is 64).
To modify the rarity of the ores, go to `data/minecraft/worldgen/placed_feature` and edit the `count` field in the desired JSON files, this number represents the number of generation attempts per chunk.
### Weighted Counts
Some files use a weighted count system, with multiple data values being assigned a weight.
Higher weights increase the chance of the associated data value (or `data`) to be selected as the count.
With the weight system, there is a `/` chance of a particular value to be selected for the count.
Example 1
“`JSON
“count”: {
“type”: “minecraft:weighted_list”,
“distribution”: [
{
“weight”: 7,
“data”: 0
},
{
“weight”: 3,
“data”: 1
}
]
}
“`
In this example, there is a total weight of 10. 7 “points” are associated with `”data”:0` and 3 “points” being associated with `”data”:1`. Therefore, there is a 7 in 10 (70%) chance of `count` being 0 and a 3 in 10 (30%) chance of `count` being 1.
In other words, each chunk has 30% chance to attempt generating an ore blob once and a 70% chance of not attempting.
Example 2
“`JSON
“count”: {
“type”: “minecraft:weighted_list”,
“distribution”: [
{
“weight”: 7,
“data”: 0
},
{
“weight”: 3,
“data”: 1
},
{
“weight”: 1,
“data”: 5
}
]
}
“`
This time there is a total weight of 1. 7 “points” are associated with `”data”:0`, 3 “points” being associated with `”data”:1`, and 1 “point” for `”data”:5`. Therefore, there is a 7 in 11 (64%) chance of `count` being 0, a 3 in 11 (27%) chance of `count` being 1, and a 1 in 11 chance (9%) of `count` being 5.
In other words, each chunk has 9% chance of making 5 attempts to generate ore blobs,
a 27% chance to attempt generating an ore blob once
and a 64% chance of not attempting to generate any ore.
Klinbee’s Vast Vistas: Otherview
# Klinbee’s Vast Vistas: Otherview
Vanilla world generation is notorious for its jagged terrain. Some may like this, while others would prefer a smoother world generation experience. The goal of Vast Vistas is to make smooth and satisfying world generation.
### Usage
If using the datapack, you can just add it to the world at world creation. You can then create a world on the default world preset, or even use large biomes! If using the mod, it replaces the default and large biome preset to use the Vast Vistas: Otherview ones.
### Dedication
This project was a commission for Aulderis. Initially I was going to release this version, along side my preferred version (which will just be Klinbee’s Vast Vistas), but I will be focusing on other projects in the meantime. That version will be a decent bit different from this one (biomes will not be fuzzy, windswept biomes are *completely* different, there will be more types of caves, rivers will be slightly different as well). If this project ends up doing well though, I may release Klinbee’s Vast Vistas sooner though.
### Changes
– Terrain noise is smoothed significantly
– Rivers are much wider and typically more shallow
– Biome scale is a bit smaller
– Biomes are “messier”
– Caves are simpler (like air pockets)
– Old carver caves still exist (they can be removed with No Old Caves)
– Aulderis prefers them removed if you want to see his true vision of this pack
– Icebergs are smoother, smaller icebergs are removed
– Badlands Hoodoos are smoother and simplified
Kiwi 🥝
# Kiwi 🥝
Minecraft modding library used by Snownee’s mods.
It provides some QoL features (configurable):
– Shows item NBT and tags in tooltips
– Disables Microsoft’s telemetry
– Simple command calculator – `/kalc`
– Command to mute current toast notifications and sounds – `/kiwic quiet`
– Suppress experimental world settings warning (disabled by default)
– Disables the fading effect on resource reload or main menu (disabled by default)
Install Cloth Config to change settings in-game.

Killer Head






___
## What’s Killer Head ?
**Killer Head** is a project to drop the killer’s head when his victim dies.
## How it works ?
### Edit player loot table `entities/player.json`
Adds a player head to the death of a player and correlates the characteristics of the killer.
## Complementary
You can also use Drop Head.
Here’s Stackable Heads which is interesting to use.
## Compatibility
**Killer Head** should work anywhere.
## Support me!
Join my Hardcore Minecraft server: `38.143.19.130:51965`
Kenji’s Cobblemon Yoshi
Hello there, it’s me, Kenji!
And on this special day I present to you a brand-new addon by yours truly!
**It adds the famous green dino-pal from the Super Mario series, Yoshi, to your Cobblemon game!**
Yoshi or Baby Yoshi can be found in jungles as ultra-rare spawns, but might be a little more common near torchflowers.
Oh right! Yoshi is fully animated, dyeable with dyes for its cosmetic items (10 variants for Yoshi, 3 for Baby Yoshi) and of course: Rideable!
Happy April Fools Day!

**Disclaimer:** Like all of my addons, using them in public servers is prohibited. If it’s a private server for you, friends and or family, you’re free to go.
Baby Yoshi (Dragon/Normal)

Abilities: Gluttony, Oblivious, HA: Unaware
Stats: 45 / 45 / 50 / 42 / 35 / 35
Obtainable: Jungle (Ultra-Rare)
Evolves when holding Oval Stone at day
Yoshi (Dragon/Normal)

Abilities: Gluttony, Run Away, HA: Rattled
Stats: 90 / 110 / 95 / 65 / 65 / 130
Obtainable: Jungle (Ultra-Rare)
Keep Inventory Always
## Keep Inventory Always
The mod turns on a game rule that allows you to save your inventory when you die in each world
## How to use
To use the mod, you only need to install it. Now when creating a world, the game rule keepInventory will always be enabled
## Dependencies
– Fabric loader requires Fabric API
Kai Fixes Sand
As the name suggests, Kai Fixes Sand improves the textures of sand and related blocks in Minecraft to make them more usable as building blocks.
________________________________________________________________________________________________
This resource pack is a small part of a much larger resource pack being worked on called Kai Fixes Minecraft.
The concept behind what Kai Fixes Minecraft is bringing to the table is:
– Significantly reduce redundancies within the block textures
– Greatly increase the building opportunities from blocks that often get overlooked
– Reduce the unintentional texture repetition effect without heavy reliance on noise or random block variants by focusing on patterns that seamlessly splice together and proper shading
– Identify colors missing from the game and the best texture to go with that color while maintaining balance with what feels appropriate for the block in accordance with its fit in the game
– Maintain the highest quality of block textures in the Minecraft ecosystem
________________________________________________________________________________________________
Terms of Use
– Captain Kai is the creator and owner of this resource pack
– If you use assets from this resource pack in your own, credit is required. Preferably including its name and a link to an official CurseForge, Modrinth, or Planet Minecraft page
– You may not port this resource pack or its assets to work on Minecraft Bedrock Edition
– You may not include assets from this resource pack in a paid product or paid access to a product
Kai Fixes Quartz
As the name suggests, Kai Fixes Quartz improves the texture of quartz and related blocks in Minecraft to make them more usable as building blocks.
________________________________________________________________________________________________
This resource pack is a small part of a much larger resource pack being worked on called Kai Fixes Minecraft.
The concept behind what Kai Fixes Minecraft is bringing to the table is:
– Significantly reduce redundancies within the block textures
– Greatly increase the building opportunities from blocks that often get overlooked
– Reduce the unintentional texture repetition effect without heavy reliance on noise or random block variants by focusing on patterns that seamlessly splice together and proper shading
– Identify colors missing from the game and the best texture to go with that color while maintaining balance with what feels appropriate for the block in accordance with its fit in the game
– Maintain the highest quality of block textures in the Minecraft ecosystem
________________________________________________________________________________________________
Terms of Use
– Captain Kai is the creator and owner of this resource pack
– If you use assets from this resource pack in your own, credit is required. Preferably including its name and a link to an official CurseForge, Modrinth, or Planet Minecraft page
– You may not port this resource pack or its assets to work on Minecraft Bedrock Edition
– You may not include assets from this resource pack in a paid product or paid access to a product