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 support for several mods #207

Merged
merged 17 commits into from
Oct 6, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* Copyright (C) 2023 Luke Bemish and contributors
* SPDX-License-Identifier: LGPL-3.0-or-later
*/

{
mod_id: 'biggerreactors',
provided_stones: [],
provided_ores: [
{
id: 'uranium_ore',
lang: {
en_us: 'Uranium Ore',
},
block_id: [
'biggerreactors:uranium_ore',
'biggerreactors:deepslate_uranium_ore',
],
types: [
'stone',
],
stone: [
'stone',
'deepslate',
],
},
],
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
/*
* Copyright (C) 2023 Luke Bemish and contributors
* SPDX-License-Identifier: LGPL-3.0-or-later
*/

{
mod_id: 'cavesanddepths',
provided_stones: [
{
id: 'deepercaves_chert',
lang: {
en_us: 'Chert',
},
block_id: 'cavesanddepths:chert',
types: [
'stone',
],
},
{
id: 'deepercaves_chalkstone',
lang: {
en_us: 'Chalkstone',
},
block_id: 'cavesanddepths:chalkstone',
types: [
'stone',
],
},
{
id: 'deepercaves_mudstone',
lang: {
en_us: 'Mudstone',
},
block_id: 'cavesanddepths:mudstone',
types: [
'stone',
],
},
{
id: 'deepercaves_slate',
lang: {
en_us: 'Slate',
},
block_id: 'cavesanddepths:slate',
types: [
'stone',
],
},
],
provided_ores: [
{
id: 'coal_ore',
lang: {
en_us: 'Coal Ore',
},
block_id: [
'cavesanddepths:slate_coal_ore',
],
types: [
vizthex123 marked this conversation as resolved.
Show resolved Hide resolved
'stone',
],
stone: [
'slate',
],
},
{
id: 'copper_ore',
lang: {
en_us: 'Copper Ore',
},
block_id: [
'cavesanddepths:slate_copper_ore',
],
types: [
'stone',
],
stone: [
'slate',
],
},
{
id: 'iron_ore',
lang: {
en_us: 'Iron Ore',
},
block_id: [
'cavesanddepths:slate_iron_ore',
],
types: [
'stone',
],
stone: [
'slate',
],
},
{
id: 'gold_ore',
lang: {
en_us: 'Gold Ore',
},
block_id: [
'cavesanddepths:slate_gold_ore',
],
types: [
'stone',
],
stone: [
'slate',
],
},
{
id: 'diamond_ore',
lang: {
en_us: 'Diamond Ore',
},
block_id: [
'cavesanddepths:slate_diamond_ore',
],
types: [
'stone',
],
stone: [
'slate',
],
},
{
id: 'emerald_ore',
lang: {
en_us: 'Emerald Ore',
},
block_id: [
'cavesanddepths:slate_emerald_ore',
],
types: [
'stone',
],
stone: [
'slate',
],
},
{
id: 'lapis_ore',
lang: {
en_us: 'Lapis Lazuli Ore',
},
block_id: [
'cavesanddepths:slate_lapislazuli_ore',
],
types: [
'stone',
],
stone: [
'slate',
],
},
{
id: 'redstone_ore',
lang: {
en_us: 'Redstone Ore',
},
block_id: [
'cavesanddepths:slate_redstone_ore',
],
types: [
'stone',
],
stone: [
'slate',
],
},
],
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/*
* Copyright (C) 2023 Luke Bemish and contributors
* SPDX-License-Identifier: LGPL-3.0-or-later
*/

{
mod_id: 'deepresonance',
provided_stones: [],
provided_ores: [
{
id: 'resonating_ore',
lang: {
en_us: 'Resonating Ore',
},
block_id: [
'deepresonance:resonating_ore_stone',
'deepresonance:resonating_ore_deepslate',
],
types: [
'stone',
],
stone: [
'stone',
'deepslate',
],
},
{
id: 'nether_resonating_ore',
orename: 'resonating_ore',
lang: {
en_us: 'Resonating Ore',
},
block_id: [
'deepresonance:resonating_ore_nether',
],
types: [
'nether',
],
stone: [
'netherrack',
],
},
{
id: 'end_resonating_ore',
orename: 'resonating_ore',
lang: {
en_us: 'Resonating Ore',
},
block_id: [
'deepresonance:resonating_ore_end',
],
types: [
'end',
],
stone: [
'end_stone',
],
},
],
}
vizthex123 marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,11 +1,42 @@
/*
* Copyright (C) 2023 Luke Bemish and contributors
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
*/

{
mod_id: 'galosphere',
provided_stones: [],
provided_stones: [
{
id: 'galosphere_pastel_pink_salt',
lang: {
en_us: 'Pastel Pink Salt',
},
block_id: 'galosphere:pastel_pink_salt',
types: [
'stone',
],
},
{
id: 'galosphere_pink_salt',
lang: {
en_us: 'Pink Salt',
},
block_id: 'galosphere:pink_salt',
types: [
'stone',
],
},
{
id: 'galosphere_rose_pink_salt',
lang: {
en_us: 'Rose Pink Salt',
},
block_id: 'galosphere:rose_pink_salt',
types: [
'stone',
],
},
],
provided_ores: [
{
id: 'silver_ore',
Expand All @@ -16,9 +47,6 @@
'galosphere:silver_ore',
'galosphere:deepslate_silver_ore',
],
orename: [
'silver_ore',
],
types: [
'stone',
],
Expand All @@ -28,4 +56,4 @@
],
},
],
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* Copyright (C) 2023 Luke Bemish and contributors
* SPDX-License-Identifier: LGPL-3.0-or-later
*/

{
mod_id: 'outer_end',
provided_stones: [
{
id: 'outer_end_ancient_stone',
lang: {
en_us: 'Ancient Stone',
},
block_id: 'outer_end:ancient_stone',
types: [
'end',
],
},
{
id: 'outer_end_violite',
lang: {
en_us: 'Violite',
},
block_id: 'outer_end:violite',
types: [
'end',
],
},
],
provided_ores: [],
}
Loading