This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Performance improvements - Fixed a Purpur Pillar spawning at world spawn upon each dragon fight - Fixed Cooked Wolf Chop translation - Fixed Ore Spirit spawn rates from certain ores - Fixed Lapis Ores spawning Gold Ore Spirits - Fixed loot table `origami-games:launch/world/structure/desert_tomb/barrel` throwing parameter not provided errors on load - Added Bonsai Pot - Spawns tree-based loot into any container below the Bonsai Pot when there is a Grass Block and a Sapling above it and when it has dirt in the first slot - Crafted in Synthesiser with *Bone Blocks* and a *Flower Pot* - `B_B` - `BFB` - `_B_` - Industrial Grade Diamonds are now obtainable - Drop a Diamond on to an anvil and push a piston head down on to it - Block Breakers now require Industrial Grade Diamond in their recipe instead of Diamond - Reduced Sand Crawlers' upwards throwing motion - Reduced the chance of a Spirit Orb dropping from an Ore Spirit - Made the Ender Dragon drop an Elytra - Made Ore Spirits not drop with Silk Touch - Made ore drops from Ore Spirits drop with a count like Fortune III - Made Shulkers spawn in the main End island now instead of Chorus - Reworked the mob spawning system to use loot table weights - When near caged End Crystals, survival mode users will be affected with Mining Fatigue - Arrows shot at End Crystals will now be deflected - Reduced month size to 4 in-game days - Removed custom block middle-clicking - Removed removal of `PickupDelay` from items being pulled by Magnetite - Temporarily disabled custom arrows - optimising
- Loading branch information
Showing
119 changed files
with
3,016 additions
and
459 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
Launch (Data)/data/minecraft/loot_tables/entities/ender_dragon.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "minecraft:entity", | ||
"pools": [ | ||
{ | ||
"rolls": 1, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "minecraft:elytra" | ||
} | ||
] | ||
} | ||
] | ||
} |
15 changes: 0 additions & 15 deletions
15
Launch (Data)/data/origami-games/advancements/launch/item/consume_dark_flesh.json
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
Launch (Data)/data/origami-games/advancements/launch/item/dark_flesh/consume.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"criteria": { | ||
"consume_dark_flesh": { | ||
"trigger": "minecraft:consume_item", | ||
"conditions": { | ||
"item": { | ||
"nbt": "{origami-games:{launch:{item:\"dark_flesh\"}}}" | ||
} | ||
} | ||
} | ||
}, | ||
"rewards": { | ||
"function": "origami-games:launch/item/dark_flesh/consume" | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...h (Data)/data/origami-games/functions/launch/block/bonsai_pot/check_dirt_count.mcfunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#@s - bonsai pot if [items in hopper] | ||
#called by launch/block/bonsai_pot/processes | ||
|
||
#get count of dirt in slot 1 | ||
execute store result score @s lch_bp_count run data get block ~ ~ ~ Items[{Slot:0b,id:"minecraft:dirt"}].Count | ||
|
||
#set CMD | ||
execute unless score @s lch_bp_count matches 1.. run data modify entity @s ArmorItems[3].tag.CustomModelData set value 7 | ||
execute if score @s lch_bp_count matches 1.. run function origami-games:launch/block/bonsai_pot/dirt/part_filled | ||
execute if score @s lch_bp_count matches 32.. run function origami-games:launch/block/bonsai_pot/dirt/filled |
3 changes: 3 additions & 0 deletions
3
Launch (Data)/data/origami-games/functions/launch/block/bonsai_pot/craft.mcfunction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
data remove block ~ ~ ~ Items | ||
loot replace block ~ ~ ~ container.8 loot origami-games:launch/items/bonsai_pot | ||
data modify block ~ ~ ~ Items[{Slot:8b}].tag.lch_crafting.multiplier set value 1 |
Oops, something went wrong.