mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 15:17:09 +00:00
22w11a, first 1.19 version
This commit is contained in:
@@ -5,11 +5,12 @@ import * as java16 from '@mcschema/java-1.16'
|
||||
import * as java17 from '@mcschema/java-1.17'
|
||||
import * as java18 from '@mcschema/java-1.18'
|
||||
import * as java182 from '@mcschema/java-1.18.2'
|
||||
import * as java19 from '@mcschema/java-1.19'
|
||||
import config from '../../config.json'
|
||||
import { message } from '../Utils'
|
||||
import { fetchData } from './DataFetcher'
|
||||
|
||||
export const VersionIds = ['1.15', '1.16', '1.17', '1.18', '1.18.2'] as const
|
||||
export const VersionIds = ['1.15', '1.16', '1.17', '1.18', '1.18.2', '1.19'] as const
|
||||
export type VersionId = typeof VersionIds[number]
|
||||
|
||||
export type BlockStateRegistry = {
|
||||
@@ -47,6 +48,7 @@ const versionGetter: {
|
||||
1.17: java17,
|
||||
1.18: java18,
|
||||
'1.18.2': java182,
|
||||
1.19: java19,
|
||||
}
|
||||
|
||||
export let CachedDecorator: INode<any>
|
||||
|
||||
@@ -69,6 +69,10 @@
|
||||
},
|
||||
{
|
||||
"id": "1.18.2",
|
||||
"ref": "1.18.1"
|
||||
},
|
||||
{
|
||||
"id": "1.19",
|
||||
"dynamic": true
|
||||
}
|
||||
],
|
||||
@@ -179,7 +183,15 @@
|
||||
"url": "worldgen/structure-feature",
|
||||
"category": "worldgen",
|
||||
"schema": "configured_structure_feature",
|
||||
"minVersion": "1.16"
|
||||
"minVersion": "1.16",
|
||||
"maxVersion": "1.18.2"
|
||||
},
|
||||
{
|
||||
"id": "worldgen/structure",
|
||||
"url": "worldgen/structure",
|
||||
"category": "worldgen",
|
||||
"schema": "structure",
|
||||
"minVersion": "1.19"
|
||||
},
|
||||
{
|
||||
"id": "worldgen/structure_set",
|
||||
@@ -210,6 +222,20 @@
|
||||
"schema": "template_pool",
|
||||
"minVersion": "1.16"
|
||||
},
|
||||
{
|
||||
"id": "worldgen/world_preset",
|
||||
"url": "worldgen/world-preset",
|
||||
"category": "worldgen",
|
||||
"schema": "world_preset",
|
||||
"minVersion": "1.19"
|
||||
},
|
||||
{
|
||||
"id": "worldgen/flat_level_generator_preset",
|
||||
"url": "worldgen/flat-world-preset",
|
||||
"category": "worldgen",
|
||||
"schema": "flat_level_generator_preset",
|
||||
"minVersion": "1.19"
|
||||
},
|
||||
{
|
||||
"id": "block_definition",
|
||||
"url": "assets/blockstate",
|
||||
|
||||
@@ -145,9 +145,12 @@
|
||||
"worldgen/noise_settings": "Noise Settings",
|
||||
"worldgen/processor_list": "Processor List",
|
||||
"worldgen/configured_structure_feature": "Structure Feature",
|
||||
"worldgen/structure": "Structure",
|
||||
"worldgen/structure_set": "Structure Set",
|
||||
"worldgen/configured_surface_builder": "Surface Builder",
|
||||
"worldgen/template_pool": "Template Pool",
|
||||
"worldgen/world_preset": "World Preset",
|
||||
"worldgen/flat_level_generator_preset": "Flat World Preset",
|
||||
"zoom_in": "Zoom in",
|
||||
"zoom_out": "Zoom out"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user