neuralgia/kubejs/startup_scripts/minecraft/constants.js

186 lines
No EOL
4.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// priority: 0
/**
* Список хранит предметы,
* у которых должны быть удалены тэги и они должны быть скрыты в REI.
*/
global.MINECRAFT_DISABLED_ITEMS = [
'minecraft:oak_wood',
'minecraft:stripped_oak_wood',
'minecraft:oak_log',
'minecraft:stripped_oak_log',
'minecraft:oak_planks',
'minecraft:oak_stairs',
'minecraft:oak_slab',
'minecraft:oak_pressure_plate',
'minecraft:oak_fence',
'minecraft:oak_fence_gate',
'minecraft:oak_door',
'minecraft:oak_trapdoor',
'minecraft:oak_boat',
'minecraft:oak_chest_boat',
'minecraft:oak_sign',
'minecraft:oak_hanging_sign',
'minecraft:oak_button',
// Other
'minecraft:bookshelf',
'minecraft:chiseled_bookshelf',
'minecraft:sand',
'minecraft:suspicious_sand',
'minecraft:red_sand',
'minecraft:wheat',
'minecraft:composter',
'minecraft:barrel',
'minecraft:blast_furnace',
'minecraft:furnace',
'minecraft:furnace_minecart',
'minecraft:anvil',
'minecraft:chipped_anvil',
'minecraft:damaged_anvil',
// Ores
'minecraft:netherite_scrap',
'minecraft:netherite_ingot',
'minecraft:netherite_block',
'minecraft:smithing_table',
'minecraft:netherite_block',
'minecraft:coal_ore',
'minecraft:deepslate_coal_ore',
'minecraft:iron_ore',
'minecraft:deepslate_iron_ore',
'minecraft:copper_ore',
'minecraft:deepslate_copper_ore',
'minecraft:gold_ore',
'minecraft:deepslate_gold_ore',
'minecraft:redstone_ore',
'minecraft:deepslate_redstone_ore',
'minecraft:emerald_ore',
'minecraft:deepslate_emerald_ore',
'minecraft:lapis_ore',
'minecraft:deepslate_lapis_ore',
'minecraft:diamond_ore',
'minecraft:deepslate_diamond_ore',
'minecraft:nether_gold_ore',
'minecraft:nether_quartz_ore',
'minecraft:ancient_debris',
// Tools
'minecraft:wooden_sword',
'minecraft:wooden_pickaxe',
'minecraft:wooden_axe',
'minecraft:wooden_shovel',
'minecraft:wooden_hoe',
'minecraft:stone_sword',
'minecraft:stone_pickaxe',
'minecraft:stone_axe',
'minecraft:stone_shovel',
'minecraft:stone_hoe',
'minecraft:iron_sword',
'minecraft:iron_pickaxe',
'minecraft:iron_axe',
'minecraft:iron_shovel',
'minecraft:iron_hoe',
'minecraft:golden_sword',
'minecraft:golden_pickaxe',
'minecraft:golden_axe',
'minecraft:golden_shovel',
'minecraft:golden_hoe',
'minecraft:diamond_sword',
'minecraft:diamond_pickaxe',
'minecraft:diamond_axe',
'minecraft:diamond_shovel',
'minecraft:diamond_hoe',
'minecraft:netherite_sword',
'minecraft:netherite_pickaxe',
'minecraft:netherite_axe',
'minecraft:netherite_shovel',
'minecraft:netherite_hoe',
// Armor
// Horse
'minecraft:iron_horse_armor',
'minecraft:golden_horse_armor',
'minecraft:diamond_horse_armor',
// Player
'minecraft:netherite_helmet',
'minecraft:netherite_chestplate',
'minecraft:netherite_leggings',
'minecraft:netherite_boots',
'minecraft:golden_helmet',
'minecraft:golden_chestplate',
'minecraft:golden_leggings',
'minecraft:golden_boots',
'minecraft:iron_helmet',
'minecraft:iron_chestplate',
'minecraft:iron_leggings',
'minecraft:iron_boots',
'minecraft:chainmail_helmet',
'minecraft:chainmail_chestplate',
'minecraft:chainmail_leggings',
'minecraft:chainmail_boots',
'minecraft:diamond_helmet',
'minecraft:diamond_chestplate',
'minecraft:diamond_leggings',
'minecraft:diamond_boots',
];
global.VANILLA_WOOD_TYPES = [
"oak",
"spruce",
"birch",
"jungle",
"acacia",
"cherry",
"dark_oak",
"mangrove",
"bamboo"
];
global.VANILLA_STONE_TYPES = [
"sand",
"red_sand",
"gravel",
"ore",
"deepslate",
"basalt",
"endstone",
"netherrack",
"andesite",
"diorite",
"granite",
"tuff"
];
global.MINECRAFT_FORGE_DYE = [
'#forge:dyes/white',
'#forge:dyes/orange',
'#forge:dyes/magenta',
'#forge:dyes/light_blue',
'#forge:dyes/yellow',
'#forge:dyes/lime',
'#forge:dyes/pink',
'#forge:dyes/gray',
'#forge:dyes/light_gray',
'#forge:dyes/cyan',
'#forge:dyes/purple',
'#forge:dyes/blue',
'#forge:dyes/brown',
'#forge:dyes/green',
'#forge:dyes/red',
'#forge:dyes/black'
];
/*
[
'minecraft:sand',
'minecraft:chest',
'minecraft:trapped_chest',
];*/