diff --git a/src/app/components/customized/CustomizedGenerator.ts b/src/app/components/customized/CustomizedGenerator.ts index 52efb253..c171a3da 100644 --- a/src/app/components/customized/CustomizedGenerator.ts +++ b/src/app/components/customized/CustomizedGenerator.ts @@ -246,6 +246,7 @@ const Ores: Partial> = { redstone: 'ore_redstone', lapis: 'ore_lapis', lapisBuried: 'ore_lapis_buried', + emerald: 'ore_emerald', diamond: 'ore_diamond', diamondBuried: 'ore_diamond_buried', diamondLarge: 'ore_diamond_large', diff --git a/src/app/components/customized/CustomizedModel.ts b/src/app/components/customized/CustomizedModel.ts index c725b740..578d8465 100644 --- a/src/app/components/customized/CustomizedModel.ts +++ b/src/app/components/customized/CustomizedModel.ts @@ -68,6 +68,7 @@ export interface CustomizedModel { redstone: CustomizedOreModel | undefined, lapis: CustomizedOreModel | undefined, lapisBuried: CustomizedOreModel | undefined, + emerald: CustomizedOreModel | undefined, diamond: CustomizedOreModel | undefined, diamondBuried: CustomizedOreModel | undefined, diamondLarge: CustomizedOreModel | undefined, @@ -130,6 +131,7 @@ export namespace CustomizedModel { redstone: { size: 8, tries: 4, minAboveBottom: 0, maxHeight: 15 }, lapis: { size: 7, tries: 2, minAboveBottom: -32, maxAboveBottom: 32, trapezoid: true }, lapisBuried: { size: 7, tries: 4, minAboveBottom: 0, maxHeight: 32 }, + emerald: { size: 3, tries: 100, minHeight: -16, maxHeight: 480, trapezoid: true }, diamond: { size: 4, tries: 7, minAboveBottom: -80, maxAboveBottom: 80, trapezoid: true }, diamondBuried: { size: 8, tries: 4, minAboveBottom: -80, maxAboveBottom: 80, trapezoid: true }, diamondLarge: { size: 12, tries: 1/9, minAboveBottom: -80, maxAboveBottom: 80, trapezoid: true }, diff --git a/src/app/components/customized/OresSettings.tsx b/src/app/components/customized/OresSettings.tsx index 8cecbf46..1579bba9 100644 --- a/src/app/components/customized/OresSettings.tsx +++ b/src/app/components/customized/OresSettings.tsx @@ -19,6 +19,7 @@ export function OresSettings(props: Props) { + }