-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathupcomings.ts
More file actions
37 lines (36 loc) · 1.46 KB
/
upcomings.ts
File metadata and controls
37 lines (36 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import type { NaiveVersion } from "..";
export const upcomings: NaiveVersion[] = [
{
title: "First Drop 2026",
subtitle: "26.1",
possibleDate: "Presumed Early 2026",
type: "drop",
icon: "/java/version_26_1.png",
funFact: "Did you know? This is the first version of the game to use a two-digit year in its versioning system, marking a new era for Minecraft updates.",
learnMore: "@First_Drop_2026",
mainFeatures: [
{ text: "Unique new models for baby mobs and rabbit" },
{ text: "Name Tags are now craftable" },
{ text: "Golden dandelion to pause the growth of baby animals." },
],
minorFeatures: [
{ text: "Trumpet instrument in note block with copper blocks" },
{ text: "New sound variants for some animals" }
]
},
{
title: "Vibrant Visuals",
type: "minor",
possibleDate: "Future",
icon: "/java/version_vibrant_visuals.png",
funFact: "Did you know? A similar update, the \"Super Duper Graphics Pack\" was announced in 2017, but was cancelled in 2019 due to technical limitations.\n\nThis update has already been released for the Bedrock Edition of the game, as part of the Chase the Skies game drop.",
learnMore: "@Vibrant_Visuals",
mainFeatures: [
{ text: "Major visual overhaul" },
{ text: "Directional Lights with Pixel-aligned shadows" },
{ text: "Specular highlights" },
{ text: "Emissive texures" },
{ text: "Water Reflections" },
]
}
] as const;