Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added example for mod ores compatible with version 1.20-1.20.1 #85

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions datapacks/default-mods-example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Locate the Correct Feature

Use `/place features [modname]:[ore]` to identify the correct name of the feature.

### Validate and Update for Other Versions

Use https://misode.github.io/worldgen/ to verify and update all files in the `data` folder. Add or remove parameters required by different versions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"generator": {
"type": "minecraft:noise",
"biome_source": {
"type": "minecraft:fixed",
"biome": "mining_dimension:mining"
},
"seed": 0,
"settings": "mining_dimension:mining"
},
"type": "mining_dimension:mining"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"ultrawarm": false,
"natural": false,
"piglin_safe": false,
"respawn_anchor_works": false,
"bed_works": false,
"has_raids": false,
"has_skylight": false,
"has_ceiling": true,
"coordinate_scale": 1,
"ambient_light": 0,
"fixed_time": 18000,
"logical_height": 256,
"effects": "minecraft:overworld",
"infiniburn": "#minecraft:infiniburn_overworld",
"min_y": -64,
"height": 384,
"monster_spawn_light_level": 0,
"monster_spawn_block_light_limit": 0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"temperature": 0.6,
"downfall": 0,
"has_precipitation": false,
"effects": {
"sky_color": 0,
"fog_color": 0,
"water_color": 4159204,
"water_fog_color": 329011,
"mood_sound": {
"sound": "minecraft:ambient.cave",
"tick_delay": 6000,
"block_search_extent": 8,
"offset": 2
}
},
"spawners": {
"water_ambient": [],
"misc": []
},
"spawn_costs": {},
"carvers": {
"air": ["minecraft:cave", "minecraft:canyon"]
},
"features": [
[
"minecraft:lake_lava_underground",
"minecraft:monster_room",
"minecraft:ore_dirt",
"minecraft:ore_gravel",
"minecraft:ore_granite_lower",
"minecraft:ore_diorite_lower",
"minecraft:ore_andesite_lower",
"minecraft:ore_coal_upper",
"minecraft:ore_iron_middle",
"minecraft:ore_gold",
"minecraft:ore_redstone",
"minecraft:ore_diamond",
"minecraft:ore_lapis",
"minecraft:disk_sand",
"minecraft:disk_clay",
"minecraft:disk_gravel",
"bigreactors:yellorite_ore",
"bigreactors:yellorite_deepslate_ore",
"bigreactors:benitoite_ore",
"immersiveengineering:bauxite",
"immersiveengineering:deep_nickel",
"immersiveengineering:lead",
"immersiveengineering:mineral_veins",
"immersiveengineering:nickel",
"immersiveengineering:silver",
"immersiveengineering:uranium",
"thermal:apatite_ore",
"thermal:cinnabar_ore",
"thermal:lead_ore",
"thermal:nickel_ore",
"thermal:niter_ore",
"thermal:silver_ore",
"thermal:sulfur_ore",
"thermal:tin_ore"
]
]
}
6 changes: 6 additions & 0 deletions datapacks/default-mods-example/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"pack": {
"pack_format": 6,
"description": [{"text":"Default","color":"green"},{"text":"\nAdvanced Mining Dimension Custom","color":"yellow"}]
}
}