oopsie daisies
This commit is contained in:
parent
40136602d3
commit
76531ec22d
9 changed files with 32 additions and 7 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -2,6 +2,16 @@
|
||||||
- Tweak Flower generation
|
- Tweak Flower generation
|
||||||
- Add config base
|
- Add config base
|
||||||
- Support for 1.20-1.20.1 in one file
|
- Support for 1.20-1.20.1 in one file
|
||||||
|
-
|
||||||
## [3.0.3]
|
## [3.0.3]
|
||||||
- Tweak Flower generation
|
- Tweak Flower generation
|
||||||
- Quiltify SimpleConfig
|
- Quiltify SimpleConfig
|
||||||
|
-
|
||||||
|
## [3.0.4]
|
||||||
|
### Changes:
|
||||||
|
- Removed some unused bloat .
|
||||||
|
- Roses actually drop a rose on breaking. (wow)
|
||||||
|
- Tweaked the loot tables again .
|
||||||
|
- Roses should be more common than cyan rose bushes, which are more common than cyan roses.
|
||||||
|
### Known Bugs:
|
||||||
|
- Rose Bushes drop a rose bush item *and* roses.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# Roses Mod
|
# Roses Mod
|
||||||
![GitHub](https://img.shields.io/github/license/LimePotato/roses-mod)
|
![GitHub](https://img.shields.io/github/license/LimePotato/roses-mod)
|
||||||
|
Since 3.0.0 I've been doing SemVer Correctly lol.
|
||||||
|
|
||||||
## Requires [Quilt Standard Libraries/Quilted Fabric API!](https://modrinth.com/mod/qsl)
|
## Requires [Quilt Standard Libraries/Quilted Fabric API!](https://modrinth.com/mod/qsl)
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx1G
|
||||||
org.gradle.parallel = true
|
org.gradle.parallel = true
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
version = 3.0.3
|
version = 3.0.4
|
||||||
maven_group = xyz.limepot
|
maven_group = xyz.limepot
|
||||||
archives_base_name = roses_mod
|
archives_base_name = roses_mod
|
||||||
|
|
||||||
|
|
|
@ -86,7 +86,7 @@ public class RosesMod implements ModInitializer {
|
||||||
|
|
||||||
|
|
||||||
//INIT
|
//INIT
|
||||||
LOGGER.info("Hello Quilt world from {}!", mod.metadata().name());
|
LOGGER.info("Let that prickly nostalgia in.");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:block",
|
||||||
|
"pools": [
|
||||||
|
{
|
||||||
|
"rolls": 1,
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"type": "minecraft:item",
|
||||||
|
"name": "roses_mod:cyan_rose_flower"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"type": "minecraft:flower",
|
"type": "minecraft:tall_flower",
|
||||||
"config": {
|
"config": {
|
||||||
"tries": 1,
|
"tries": 1,
|
||||||
"xz_spread": 1,
|
"xz_spread": 1,
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
"type": "minecraft:weighted_state_provider",
|
"type": "minecraft:weighted_state_provider",
|
||||||
"entries": [
|
"entries": [
|
||||||
{
|
{
|
||||||
"weight": 1,
|
"weight": 2,
|
||||||
"data": {
|
"data": {
|
||||||
"Name": "roses_mod:cyan_rose_bush"
|
"Name": "roses_mod:cyan_rose_bush"
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"placement": [
|
"placement": [
|
||||||
{
|
{
|
||||||
"type": "minecraft:rarity_filter",
|
"type": "minecraft:rarity_filter",
|
||||||
"chance": 3
|
"chance": 0.5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "minecraft:in_square"
|
"type": "minecraft:in_square"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"placement": [
|
"placement": [
|
||||||
{
|
{
|
||||||
"type": "minecraft:rarity_filter",
|
"type": "minecraft:rarity_filter",
|
||||||
"chance": 1
|
"chance": 0.7
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "minecraft:in_square"
|
"type": "minecraft:in_square"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"placement": [
|
"placement": [
|
||||||
{
|
{
|
||||||
"type": "minecraft:rarity_filter",
|
"type": "minecraft:rarity_filter",
|
||||||
"chance": 20
|
"chance": 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "minecraft:in_square"
|
"type": "minecraft:in_square"
|
||||||
|
|
Loading…
Reference in a new issue