Skip to content

Commit

Permalink
v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
variousauthors committed Feb 13, 2021
1 parent 280ca13 commit 7faa092
Show file tree
Hide file tree
Showing 41 changed files with 1,017 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.1] - 2021-03-12

### Changes
- add orange slime as a drop from some plants in the nether, mistakenly not added in the previous version
- a variety of swamp trees now drop slime
- corrected some mistakes with the mekanism ore processing from 0.7.0
- listAllFruit and foodFruit are interchangeable now
- redstone gears from mystical mechanics are now craftable
- the pinch of salt recipe now has a name
- a variety of blocks can now be used with forge microblocks

### Added
- dropt, which was mistakenly not included in 0.7.0
- a patchouli book that serves as a guide to the modpack v1

## [0.7.0] - 2021-01-09

### Changes
Expand Down
15 changes: 15 additions & 0 deletions server-patches/v0.7.1/config/dropt.module.Dropt.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Configuration file

general {
# Set to true to enable profiling output to the log file.
B:ENABLE_PROFILE_LOG_OUTPUT=false

# Set to true to inject about 100,000 unique rules to assist in profiling.
# Used in development to test performance.
B:INJECT_PROFILING_RULES=false

# Set to false to ignore unknown fields when deserializing JSON.
B:JSON_STRICT_MODE=true
}


219 changes: 219 additions & 0 deletions server-patches/v0.7.1/config/dropt/tree-slime.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,219 @@
{
"rules": [
{
"match": {
"biomes": {
"type": "WHITELIST",
"ids": [
"minecraft:swampland",
"minecraft:mutated_swampland",
"biomesoplenty:bayou",
"biomesoplenty:fen",
"biomesoplenty:lush_swamp"
]
},
"blocks": {
"blocks": [
"minecraft:leaves:*",
"minecraft:leaves2:*",
"quark:variant_leaves:*",
"biomesoplenty:leaves_1:*",
"biomesoplenty:leaves_4:*",
"rustic:leaves:*"
]
}
},
"replaceStrategy": "ADD",
"drops": [
{
"selector": {
"weight": {
"value": 98
}
}
},
{
"selector": {
"weight": {
"value": 2
},
"silktouch": "EXCLUDED"
},
"item": {
"items": [
"tconstruct:edible:1",
"tconstruct:edible:2"
]
}
}
]
},
{
"match": {
"biomes": {
"type": "WHITELIST",
"ids": [
"biomesoplenty:bog",
"biomesoplenty:moor",
"biomesoplenty:quagmire"
]
},
"blocks": {
"blocks": [
"minecraft:leaves:*",
"minecraft:leaves2:*",
"quark:variant_leaves:*",
"biomesoplenty:leaves_1:*",
"biomesoplenty:leaves_4:*",
"rustic:leaves:*"
]
}
},
"replaceStrategy": "ADD",
"drops": [
{
"selector": {
"weight": {
"value": 96
}
}
},
{
"selector": {
"weight": {
"value": 4
},
"silktouch": "EXCLUDED"
},
"item": {
"items": [
"tconstruct:edible:1",
"tconstruct:edible:2"
]
}
}
]
},
{
"match": {
"biomes": {
"type": "WHITELIST",
"ids": [
"biomesoplenty:dead_swamp",
"biomesoplenty:ominous_woods"
]
},
"blocks": {
"blocks": [
"minecraft:leaves:*",
"minecraft:leaves2:*",
"quark:variant_leaves:*",
"biomesoplenty:leaves_1:*",
"biomesoplenty:leaves_4:*",
"rustic:leaves:*"
]
}
},
"replaceStrategy": "ADD",
"drops": [
{
"selector": {
"weight": {
"value": 90
}
}
},
{
"selector": {
"weight": {
"value": 10
},
"silktouch": "EXCLUDED"
},
"item": {
"items": [
"tconstruct:edible:2"
]
}
}
]
},
{
"match": {
"biomes": {
"type": "WHITELIST",
"ids": [
"minecraft:hell",
"biomesoplenty:volcanic_island"
]
},
"blocks": {
"blocks": [
"minecraft:leaves:*",
"minecraft:leaves2:*",
"quark:variant_leaves:*",
"biomesoplenty:leaves_1:*",
"biomesoplenty:leaves_4:*",
"rustic:leaves:*"
]
}
},
"replaceStrategy": "ADD",
"drops": [
{
"selector": {
"weight": {
"value": 90
}
}
},
{
"selector": {
"weight": {
"value": 10
},
"silktouch": "EXCLUDED"
},
"item": {
"items": [
"tconstruct:edible:4"
]
}
}
]
},
{
"match": {
"blocks": {
"blocks": [
"biomesoplenty:double_plant:10",
"biomesoplenty:double_plant:2"
]
}
},
"replaceStrategy": "REPLACE_ALL_IF_SELECTED",
"drops": [
{
"selector": {
"weight": {
"value": 50
}
}
},
{
"selector": {
"weight": {
"value": 50
},
"silktouch": "EXCLUDED"
},
"item": {
"items": [
"tconstruct:edible:4"
]
}
}
]
}
]
}
31 changes: 31 additions & 0 deletions server-patches/v0.7.1/config/microblocks.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#Configuration file for adding microblock materials for aesthetic blocks added by mods
#Each line needs to be of the form <name>:<meta>
#<name> is the registry key of the block/item enclosed in quotes. NEI can help you find these
#<meta> may be ommitted, in which case it defaults to 0, otherwise it can be a number, a comma separated list of numbers, or a dash separated range
#Ex. "dirt" "minecraft:planks":3 "iron_ore":1,2,3,5 "ThermalFoundation:Storage":0-15

"rustic:planks":0,1
"rustic:log":0,1

"aetherworks:block_aether"
"animania:block_mud"
"animania:wool":0-6
"appliedenergistics2:chiseled_quartz_block"
"appliedenergistics2:fluix_block"
"appliedenergistics2:quartz_block"
"appliedenergistics2:quartz_glass"
"appliedenergistics2:quartz_pillar"
"appliedenergistics2:quartz_vibrant_glass"
"appliedenergistics2:sky_stone_block"
"appliedenergistics2:sky_stone_brick"
"appliedenergistics2:sky_stone_small_brick"
"appliedenergistics2:smooth_sky_stone_block"
"arcanearchives:storage_raw_quartz"
"arcanearchives:storage_shaped_quartz"
"astralsorcery:blockblackmarble":0-6
"astralsorcery:blockinfusedwood":0,1,3,4,5,6
"astralsorcery:blockmarble":0-6
"atlcraft:atlcraft_castiron_block":0-15
"atlcraft:atlcraft_tallow_block":0-15
"atlcraft:atlcraft_wax_block":0-15

6 changes: 6 additions & 0 deletions server-patches/v0.7.1/patchouli_books/almanac/book.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "A Guide to the Overworld",
"subtitle": "By John von Drakzer",
"landing_text": "The Overworld is the world that you know. It is a world of forests, hills, and plains. At its extreme edges you will find mythical alpine mountains, ominous woods, and magical places that border on the end and the nether.",
"show_progress": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Agriculture",
"description": "The Path of Nature",
"sortnum": 0,
"icon": "minecraft:hay_block"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "The Far Overworld",
"description": "The outer edges of the overworld",
"sortnum": 4,
"icon": "minecraft:mycelium"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Magic",
"description": "The Paths of Magic",
"sortnum": 3,
"icon": "minecraft:bookshelf"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "The Near Outerworlds",
"description": "The end is only the beginning.",
"sortnum": 4,
"icon": "minecraft:obsidian"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Ores",
"description": "This section of the guide covers the mineral resources of the overworld. For resources found in the most distant corners of reality, such as the nether or the end, consult the relevant sections of the guide.",
"sortnum": 1,
"icon": "minecraft:iron_ore"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Technology",
"description": "An overview of the tech",
"sortnum": 2,
"icon": "minecraft:piston"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Harvestcraft",
"icon": "harvestcraft:barleyitem",
"category": "patchouli:agriculture",
"pages": [
{
"type": "text",
"text": "Overview of Pam's Harvestcraft"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Serene Seasons",
"icon": "sereneseasons:ss_icon",
"category": "patchouli:agriculture",
"priority": true,
"pages": [
{
"type": "text",
"text": "All about seasons!"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Magical Biomes",
"icon": "biomesoplenty:log_1:5",
"category": "patchouli:far-overworld",
"pages": [
{
"type": "text",
"text": "List the magical biomes here and describe the relationship with elves, the fae, and witches..."
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Mountains Biomes",
"icon": "biomesoplenty:grass:1",
"category": "patchouli:far-overworld",
"pages": [
{
"type": "text",
"text": "List the mountains biomes here and describe the relationship with dwarves."
}
]
}
Loading

0 comments on commit 7faa092

Please sign in to comment.