Skip to content

Add missing blocks from 1.10/1.11/1.12 #352

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

Open
wants to merge 3 commits into
base: development
Choose a base branch
from
Open
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
71 changes: 54 additions & 17 deletions src/main/js/modules/blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ var blocks = {
dark_oak: '126:13'
},
snow: 78,
stone: 44,
oak: 126,
spruce: '126:1',
birch: '126:2',
Expand Down Expand Up @@ -187,7 +186,6 @@ var blocks = {
clay: 82,
sugar_cane: 83,
jukebox: 84,
fence: 85,
pumpkin: 86,
netherrack: 87,
soulsand: 88,
Expand All @@ -197,7 +195,7 @@ var blocks = {
cake: 92,
redstone_repeater: 93,
redstone_repeater_active: 94,
stained_glass: {
stained_glass: {
white: 95 // all other colors added below
},
trapdoor: 96,
Expand All @@ -207,7 +205,8 @@ var blocks = {
mossy: '98:1',
cracked: '98:2',
chiseled: '98:3',
red: 45
red: 45,
end: 206
},
mushroom_brown_huge: 99,
mushroom_red_huge: 100,
Expand Down Expand Up @@ -246,7 +245,7 @@ var blocks = {
potatoes: 142,
beetroot: 207,
button_wood: 143,
skull: 144, mobhead: 144,
skull: 144, mobhead: 144,
anvil: 145,
chest_trapped: 146,
pressure_plate_weighted_light: 147,
Expand All @@ -258,7 +257,7 @@ var blocks = {
quartzore: 153, netherquartzore: 153,
hopper: 154,
quartz: 155,
quartz_chiseled: '155:1',
quartz_chiseled: '155:1',
quartz_pillar_vertical: '155:2',
quartz_pillar_horizontal: '155:3',
quartz_pillar_cap: '155:4',
Expand All @@ -285,7 +284,7 @@ var blocks = {
hardened_clay: 172,
coal_block: 173,
packed_ice: 174,
double_plant: 175,
double_plant: 175,
sunflower: 175,
purpur: 201,
purpur_pillar: 202,
Expand All @@ -308,7 +307,8 @@ var blocks = {
orange_tulip: '38:5',
white_tulip: '38:6',
pink_tulip: '38:7',
oxeye_daisy: '38:8'
oxeye_daisy: '38:8',
chorus: 200,
},
bonemeal: '351:15',
banner: {
Expand All @@ -324,28 +324,65 @@ var blocks = {
acacia: 187
},
fence: {
oak: 85,
nether_brick: 113,
spruce: 188,
birch: 189,
jungle: 190,
oak: 191,
dark_oak: 191,
acacia: 192
}
},
end_rod: 198,
chorus_plant: 199,
chorus_flower: 200,
grass_path: 208,
magma: 213,
nether_wart_block: 214,
red_nether_brick: 215,
bone_block: 216,
// Cannot use regular colorized blocks because glazed terracota are differents blocks
glazed_terracota: {
white: 235,
orange: 236,
magenta: 237,
light_blue: 238,
yellow: 239,
lime: 240,
pink: 241,
gray: 242,
light_gray: 243,
cyan: 244,
purple: 245,
blue: 246,
brown: 247,
green: 248,
red: 249,
black: 250
},
concrete: {
white: 251
},
concrete_powder: {
white: 252
},
};

// Add all available colors to colorized block collections

var colorized_blocks = [
'wool',
'stained_clay',
'carpet',
'stained_glass',
'stained_glass_pane'
'wool',
'stained_clay',
'carpet',
'stained_glass',
'stained_glass_pane',
'concrete',
'concrete_powder'
];

for (var i = 0, len = colorized_blocks.length; i < len; i++) {
var block = colorized_blocks[i],
data_value = blocks[block].white;
data_value = blocks[block].white;

for (var color in colors) {
blocks[block][color] = data_value + ':' + colors[color];
}
Expand Down