mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-26 16:35:39 +00:00
Add emerald ore
This commit is contained in:
@@ -246,6 +246,7 @@ const Ores: Partial<Record<keyof CustomizedModel, string>> = {
|
||||
redstone: 'ore_redstone',
|
||||
lapis: 'ore_lapis',
|
||||
lapisBuried: 'ore_lapis_buried',
|
||||
emerald: 'ore_emerald',
|
||||
diamond: 'ore_diamond',
|
||||
diamondBuried: 'ore_diamond_buried',
|
||||
diamondLarge: 'ore_diamond_large',
|
||||
|
||||
@@ -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 },
|
||||
|
||||
@@ -19,6 +19,7 @@ export function OresSettings(props: Props) {
|
||||
<CustomizedOreGroup label="Gold" item="gold_ore" ores={['goldLower', 'gold']} {...props} />
|
||||
<CustomizedOreGroup label="Redstone" item="redstone_ore" ores={['redstoneLower', 'redstone']} {...props} />
|
||||
<CustomizedOreGroup label="Lapis Lazuli" item="lapis_ore" ores={['lapis', 'lapisBuried']} {...props} />
|
||||
<CustomizedOreGroup label="Emerald" item="emerald_ore" ores={['emerald']} {...props} />
|
||||
<CustomizedOreGroup label="Diamond" item="diamond_ore" ores={['diamond', 'diamondBuried', 'diamondLarge']} {...props} />
|
||||
</>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user