From 83b15042bda72802a141db0e9f95cccc5f232ebf Mon Sep 17 00:00:00 2001 From: Thomas Truong <58405482+ThomasQTruong@users.noreply.github.com> Date: Sat, 15 Apr 2023 20:35:56 -0700 Subject: [PATCH 1/7] Update README.md --- README.md | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3b5d8c3..4415cb0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,41 @@ # Very Scuffed Cobblemon Breeding -Test +My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. +- It is an instant breeding system with a 5 minute default cooldown. +- Can only breed Cobblemons from your PC. +- Tries to mimic the actual breeding system. + - Can breed using ditto, self, or same egg groups. + - Offspring will be the same as the mother. + - Offspring is the base evolution. + - Moves and EXP are reset. + - 1/8192 chance to get a shiny. + - Also has the breeding restrictions. + - No same genders. + - No differing egg groups. + - No Undiscovered egg group. + - No double ditto. + - 3 IVs randomly get inherited from either parent. + - Unless breeding items come out. + - EVs get reset. + - Nature gets RNG'd since no Everstone in the game currently. + - Friendship gets randomized. + - Gender gets randomized based on the Cobblemon's gender ratio. + - Ability gets randomized. + - Hidden abilities are supported. + - 60% chance to pass down if either parents have a hidden ability. + +## Download +[Latest](https://github.com/ThomasQTruong/VeryScuffedCobblemonBreeding/releases/tag/1.0.0) + +## How to use: +1. Open up the breeding GUI. + - Command: /pokebreed +2. Select two Cobblemons to breed. + - Next/Previous box is at the bottom right. +3. Confirm breed. + - Confirmation button is between the Next/Previous buttons. + +## Configs +### Permissions +- command.pokebreed - default is permission level 2. +### Cooldowns +- command.pokebreed.cooldown - default is 5 minutes. From 19c0893863b54a89e8eb183b650cdffa9f2bd4aa Mon Sep 17 00:00:00 2001 From: Thomas Truong <58405482+ThomasQTruong@users.noreply.github.com> Date: Sat, 15 Apr 2023 20:36:40 -0700 Subject: [PATCH 2/7] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4415cb0..b5b7a6e 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. ## How to use: 1. Open up the breeding GUI. - - Command: /pokebreed + - Command: /pokebreed 2. Select two Cobblemons to breed. - - Next/Previous box is at the bottom right. + - Next/Previous box is at the bottom right. 3. Confirm breed. - - Confirmation button is between the Next/Previous buttons. + - Confirmation button is between the Next/Previous buttons. ## Configs ### Permissions From 0d86e6a3d0ca1bf9a81e03e4e70e99bf2766f46c Mon Sep 17 00:00:00 2001 From: Thomas Truong <58405482+ThomasQTruong@users.noreply.github.com> Date: Sat, 15 Apr 2023 20:42:31 -0700 Subject: [PATCH 3/7] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b5b7a6e..c26a4c5 100644 --- a/README.md +++ b/README.md @@ -29,10 +29,14 @@ My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. ## How to use: 1. Open up the breeding GUI. - Command: /pokebreed + - ![image](https://user-images.githubusercontent.com/58405482/232265114-48c663b1-8966-4f62-8911-6519d7d2cc9e.png) 2. Select two Cobblemons to breed. + - ![image](https://user-images.githubusercontent.com/58405482/232265199-6c2311e6-e348-41be-a984-3d6a79b6dc5d.png) - Next/Previous box is at the bottom right. + - ![image](https://user-images.githubusercontent.com/58405482/232265149-941782aa-e863-4c98-91ba-5c1616c3f6b6.png) 3. Confirm breed. - Confirmation button is between the Next/Previous buttons. + - ![image](https://user-images.githubusercontent.com/58405482/232265217-2b3493e5-272d-43d8-b7b3-49dd284f98da.png) ## Configs ### Permissions From ba4dd2fc200d81003ee82a13d49aea896a158d8a Mon Sep 17 00:00:00 2001 From: Thomas Truong <58405482+ThomasQTruong@users.noreply.github.com> Date: Sat, 15 Apr 2023 20:46:50 -0700 Subject: [PATCH 4/7] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index c26a4c5..3f2e853 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. - It is an instant breeding system with a 5 minute default cooldown. - Can only breed Cobblemons from your PC. +- Single player cooldown has a slight issue. + - If you rejoin, you are instantly out of cooldown. + - Cheat at your own will. - Tries to mimic the actual breeding system. - Can breed using ditto, self, or same egg groups. - Offspring will be the same as the mother. @@ -37,6 +40,8 @@ My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. 3. Confirm breed. - Confirmation button is between the Next/Previous buttons. - ![image](https://user-images.githubusercontent.com/58405482/232265217-2b3493e5-272d-43d8-b7b3-49dd284f98da.png) +4. Trying to breed again when under cooldown will let you know the cooldown duration. + - ![image](https://user-images.githubusercontent.com/58405482/232265354-a8c21114-5a5d-4343-8be5-f7a41ed43727.png) ## Configs ### Permissions From 8b6f4ead4e48e0e83c28343af77b097d14cfd953 Mon Sep 17 00:00:00 2001 From: Thomas Truong <58405482+ThomasQTruong@users.noreply.github.com> Date: Sat, 15 Apr 2023 20:58:08 -0700 Subject: [PATCH 5/7] Update README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 3f2e853..1973653 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Very Scuffed Cobblemon Breeding My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. +- This is my first ever mod! :) - It is an instant breeding system with a 5 minute default cooldown. - Can only breed Cobblemons from your PC. - Single player cooldown has a slight issue. @@ -48,3 +49,15 @@ My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. - command.pokebreed - default is permission level 2. ### Cooldowns - command.pokebreed.cooldown - default is 5 minutes. + +## Credits +This would not have been possible without these open source works: +- Side Mod Template: [CobblemonExtras](https://github.com/Xwaffle1/CobblemonExtras) by [Xwaffle1](https://github.com/Xwaffle1/) +- Command Cooldown: [PokeGift](https://github.com/Polymeta/Pokegift/) by [Polymeta](https://github.com/Polymeta) + +## Addons used in images: +Datapacks +- [Cardboard Cutout Mon](https://modrinth.com/resourcepack/cardboard-cutout-mon) by [EikoBiko](https://modrinth.com/user/EikoBiko) + - Adds cardboard cutout textures for Cobblemons that do not have a model yet. +- [QALPS](https://modrinth.com/datapack/questionably-lore-accurate-pokemon-spawns) by [FrankTheFarmer2](https://modrinth.com/user/FrankTheFarmer2) + - Adds spawn files for some Cobblemons that do not have a model yet. From 7d64d918de38b09c8cd3f4749168da483b66e614 Mon Sep 17 00:00:00 2001 From: Thomas Truong <58405482+ThomasQTruong@users.noreply.github.com> Date: Sat, 15 Apr 2023 20:58:53 -0700 Subject: [PATCH 6/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1973653..6c11ed4 100644 --- a/README.md +++ b/README.md @@ -59,5 +59,5 @@ This would not have been possible without these open source works: Datapacks - [Cardboard Cutout Mon](https://modrinth.com/resourcepack/cardboard-cutout-mon) by [EikoBiko](https://modrinth.com/user/EikoBiko) - Adds cardboard cutout textures for Cobblemons that do not have a model yet. -- [QALPS](https://modrinth.com/datapack/questionably-lore-accurate-pokemon-spawns) by [FrankTheFarmer2](https://modrinth.com/user/FrankTheFarmer2) +- [Questionably Lore Accurate Pokemon Spawns](https://modrinth.com/datapack/questionably-lore-accurate-pokemon-spawns) by [FrankTheFarmer2](https://modrinth.com/user/FrankTheFarmer2) - Adds spawn files for some Cobblemons that do not have a model yet. From cd180d325aa13be87b7e92b288bc36a39c96acba Mon Sep 17 00:00:00 2001 From: Thomas Truong <58405482+ThomasQTruong@users.noreply.github.com> Date: Sun, 16 Apr 2023 04:26:26 -0700 Subject: [PATCH 7/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c11ed4..a01548f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ My attempt to create a scuffed Cobblemon "breeding" for my friends and I to use. - Gender gets randomized based on the Cobblemon's gender ratio. - Ability gets randomized. - Hidden abilities are supported. - - 60% chance to pass down if either parents have a hidden ability. + - 60% chance to pass down if either parents have a hidden ability. ## Download [Latest](https://github.com/ThomasQTruong/VeryScuffedCobblemonBreeding/releases/tag/1.0.0)