├── gson-2.10.1.jar ├── src └── greenscripter │ ├── minecraft │ ├── resources │ │ └── data │ │ │ └── minecraft │ │ │ ├── worldgen │ │ │ ├── density_function │ │ │ │ ├── zero.json │ │ │ │ ├── y.json │ │ │ │ └── end │ │ │ │ │ └── sloped_cheese.json │ │ │ ├── processor_list │ │ │ │ ├── empty.json │ │ │ │ └── outpost_rot.json │ │ │ ├── configured_feature │ │ │ │ ├── kelp.json │ │ │ │ ├── vines.json │ │ │ │ ├── blue_ice.json │ │ │ │ ├── ice_spike.json │ │ │ │ ├── bonus_chest.json │ │ │ │ ├── desert_well.json │ │ │ │ ├── end_island.json │ │ │ │ ├── basalt_pillar.json │ │ │ │ ├── chorus_plant.json │ │ │ │ ├── end_platform.json │ │ │ │ ├── monster_room.json │ │ │ │ ├── weeping_vines.json │ │ │ │ ├── freeze_top_layer.json │ │ │ │ ├── glowstone_extra.json │ │ │ │ ├── void_start_platform.json │ │ │ │ ├── sea_pickle.json │ │ │ │ ├── bamboo_no_podzol.json │ │ │ │ ├── bamboo_some_podzol.json │ │ │ │ ├── seagrass_mid.json │ │ │ │ ├── seagrass_short.json │ │ │ │ ├── seagrass_tall.json │ │ │ │ ├── end_gateway_delayed.json │ │ │ │ ├── seagrass_slightly_less_short.json │ │ │ │ ├── end_spike.json │ │ │ │ ├── iceberg_blue.json │ │ │ │ ├── iceberg_packed.json │ │ │ │ ├── forest_rock.json │ │ │ │ ├── twisting_vines.json │ │ │ │ └── twisting_vines_bonemeal.json │ │ │ ├── noise │ │ │ │ ├── noodle.json │ │ │ │ ├── cave_layer.json │ │ │ │ ├── ore_gap.json │ │ │ │ ├── ore_vein_a.json │ │ │ │ ├── ore_vein_b.json │ │ │ │ ├── aquifer_barrier.json │ │ │ │ ├── aquifer_lava.json │ │ │ │ ├── noodle_ridge_a.json │ │ │ │ ├── noodle_ridge_b.json │ │ │ │ ├── noodle_thickness.json │ │ │ │ ├── ore_veininess.json │ │ │ │ ├── pillar_rareness.json │ │ │ │ ├── pillar_thickness.json │ │ │ │ ├── spaghetti_2d.json │ │ │ │ ├── spaghetti_3d_1.json │ │ │ │ ├── spaghetti_3d_2.json │ │ │ │ ├── surface_swamp.json │ │ │ │ ├── badlands_pillar_roof.json │ │ │ │ ├── clay_bands_offset.json │ │ │ │ ├── iceberg_pillar_roof.json │ │ │ │ ├── nether_state_selector.json │ │ │ │ ├── pillar.json │ │ │ │ ├── spaghetti_3d_rarity.json │ │ │ │ ├── spaghetti_roughness.json │ │ │ │ ├── aquifer_fluid_level_spread.json │ │ │ │ ├── spaghetti_2d_elevation.json │ │ │ │ ├── spaghetti_2d_modulator.json │ │ │ │ ├── spaghetti_2d_thickness.json │ │ │ │ ├── spaghetti_3d_thickness.json │ │ │ │ ├── aquifer_fluid_level_floodedness.json │ │ │ │ ├── spaghetti_roughness_modulator.json │ │ │ │ ├── surface.json │ │ │ │ ├── cave_entrance.json │ │ │ │ ├── iceberg_surface.json │ │ │ │ ├── badlands_surface.json │ │ │ │ ├── calcite.json │ │ │ │ ├── gravel.json │ │ │ │ ├── ice.json │ │ │ │ ├── offset.json │ │ │ │ ├── nether_wart.json │ │ │ │ ├── netherrack.json │ │ │ │ ├── packed_ice.json │ │ │ │ ├── powder_snow.json │ │ │ │ ├── badlands_pillar.json │ │ │ │ ├── iceberg_pillar.json │ │ │ │ ├── surface_secondary.json │ │ │ │ ├── erosion.json │ │ │ │ ├── erosion_large.json │ │ │ │ ├── ridge.json │ │ │ │ ├── vegetation.json │ │ │ │ ├── temperature.json │ │ │ │ ├── temperature_large.json │ │ │ │ ├── vegetation_large.json │ │ │ │ └── patch.json │ │ │ ├── template_pool │ │ │ │ └── empty.json │ │ │ ├── multi_noise_biome_source_parameter_list │ │ │ │ ├── nether.json │ │ │ │ └── overworld.json │ │ │ ├── placed_feature │ │ │ │ ├── pile_hay.json │ │ │ │ ├── pile_ice.json │ │ │ │ ├── pile_melon.json │ │ │ │ ├── pile_snow.json │ │ │ │ ├── flower_plain.json │ │ │ │ ├── patch_cactus.json │ │ │ │ ├── pile_pumpkin.json │ │ │ │ ├── patch_berry_bush.json │ │ │ │ ├── patch_taiga_grass.json │ │ │ │ ├── sculk_patch_ancient_city.json │ │ │ │ ├── end_spike.json │ │ │ │ ├── freeze_top_layer.json │ │ │ │ └── void_start_platform.json │ │ │ └── structure │ │ │ │ ├── igloo.json │ │ │ │ ├── end_city.json │ │ │ │ ├── desert_pyramid.json │ │ │ │ ├── jungle_pyramid.json │ │ │ │ └── mansion.json │ │ │ ├── tags │ │ │ ├── block │ │ │ │ ├── incorrect_for_diamond_tool.json │ │ │ │ ├── incorrect_for_netherite_tool.json │ │ │ │ ├── axolotls_spawnable_on.json │ │ │ │ ├── strider_warm_blocks.json │ │ │ │ ├── trail_ruins_replaceable.json │ │ │ │ ├── animals_spawnable_on.json │ │ │ │ ├── does_not_block_hoppers.json │ │ │ │ ├── enchantment_power_provider.json │ │ │ │ ├── mooshrooms_spawnable_on.json │ │ │ │ ├── occludes_vibration_signals.json │ │ │ │ ├── prevent_mob_spawning_inside.json │ │ │ │ ├── sniffer_egg_hatch_boost.json │ │ │ │ ├── unstable_bottom_center.json │ │ │ │ ├── vibration_resonators.json │ │ │ │ ├── fire.json │ │ │ │ ├── infiniburn_nether.json │ │ │ │ ├── polar_bears_spawnable_on_alternate.json │ │ │ │ ├── beehives.json │ │ │ │ ├── enchantment_power_transmitter.json │ │ │ │ ├── incorrect_for_iron_tool.json │ │ │ │ ├── dragon_transparent.json │ │ │ │ ├── dripstone_replaceable_blocks.json │ │ │ │ ├── smelts_to_glass.json │ │ │ │ ├── valid_spawn.json │ │ │ │ ├── all_signs.json │ │ │ │ ├── campfires.json │ │ │ │ ├── nylium.json │ │ │ │ ├── signs.json │ │ │ │ ├── buttons.json │ │ │ │ ├── cave_vines.json │ │ │ │ ├── coal_ores.json │ │ │ │ ├── dampens_vibrations.json │ │ │ │ ├── fences.json │ │ │ │ ├── iron_ores.json │ │ │ │ ├── lapis_ores.json │ │ │ │ ├── small_dripleaf_placeable.json │ │ │ │ ├── soul_speed_blocks.json │ │ │ │ ├── blocks_wind_charge_explosions.json │ │ │ │ ├── copper_ores.json │ │ │ │ ├── deepslate_ore_replaceables.json │ │ │ │ ├── frog_prefer_jump_to.json │ │ │ │ ├── infiniburn_end.json │ │ │ │ ├── infiniburn_overworld.json │ │ │ │ ├── invalid_spawn_inside.json │ │ │ │ ├── soul_fire_base_blocks.json │ │ │ │ ├── wither_summon_base_blocks.json │ │ │ │ ├── air.json │ │ │ │ ├── bamboo_blocks.json │ │ │ │ ├── diamond_ores.json │ │ │ │ ├── emerald_ores.json │ │ │ │ ├── redstone_ores.json │ │ │ │ ├── wart_blocks.json │ │ │ │ ├── camel_sand_step_sound_blocks.json │ │ │ │ ├── crystal_sound_blocks.json │ │ │ │ ├── snow.json │ │ │ │ ├── stone_buttons.json │ │ │ │ ├── all_hanging_signs.json │ │ │ │ ├── anvil.json │ │ │ │ ├── incorrect_for_stone_tool.json │ │ │ │ ├── portals.json │ │ │ │ ├── base_stone_nether.json │ │ │ │ ├── convertable_to_mud.json │ │ │ │ ├── dead_bush_may_place_on.json │ │ │ │ ├── logs.json │ │ │ │ ├── gold_ores.json │ │ │ │ ├── snow_layer_can_survive_on.json │ │ │ │ ├── snow_layer_cannot_survive_on.json │ │ │ │ ├── underwater_bonemeals.json │ │ │ │ ├── completes_find_tree_tutorial.json │ │ │ │ ├── fall_damage_resetting.json │ │ │ │ ├── moss_replaceable.json │ │ │ │ ├── stone_pressure_plates.json │ │ │ │ ├── big_dripleaf_placeable.json │ │ │ │ ├── ice.json │ │ │ │ ├── lava_pool_stone_cannot_replace.json │ │ │ │ ├── parrots_spawnable_on.json │ │ │ │ ├── rabbits_spawnable_on.json │ │ │ │ ├── rails.json │ │ │ │ ├── sand.json │ │ │ │ ├── stone_ore_replaceables.json │ │ │ │ ├── incorrect_for_gold_tool.json │ │ │ │ ├── lush_ground_replaceable.json │ │ │ │ ├── incorrect_for_wooden_tool.json │ │ │ │ ├── oak_logs.json │ │ │ │ ├── bee_growables.json │ │ │ │ ├── cauldrons.json │ │ │ │ ├── mushroom_grow_block.json │ │ │ │ ├── birch_logs.json │ │ │ │ ├── frogs_spawnable_on.json │ │ │ │ ├── acacia_logs.json │ │ │ │ ├── cherry_logs.json │ │ │ │ ├── jungle_logs.json │ │ │ │ ├── spruce_logs.json │ │ │ │ ├── azalea_grows_on.json │ │ │ │ └── hoglin_repellents.json │ │ │ ├── item │ │ │ │ ├── bee_food.json │ │ │ │ ├── camel_food.json │ │ │ │ ├── cow_food.json │ │ │ │ ├── goat_food.json │ │ │ │ ├── panda_food.json │ │ │ │ ├── sheep_food.json │ │ │ │ ├── wolf_food.json │ │ │ │ ├── enchantable │ │ │ │ │ ├── bow.json │ │ │ │ │ ├── mace.json │ │ │ │ │ ├── sword.json │ │ │ │ │ ├── trident.json │ │ │ │ │ ├── crossbow.json │ │ │ │ │ ├── fishing.json │ │ │ │ │ ├── leg_armor.json │ │ │ │ │ ├── chest_armor.json │ │ │ │ │ ├── foot_armor.json │ │ │ │ │ ├── head_armor.json │ │ │ │ │ ├── sharp_weapon.json │ │ │ │ │ ├── fire_aspect.json │ │ │ │ │ ├── weapon.json │ │ │ │ │ ├── mining_loot.json │ │ │ │ │ ├── mining.json │ │ │ │ │ └── vanishing.json │ │ │ │ ├── frog_food.json │ │ │ │ ├── turtle_food.json │ │ │ │ ├── armadillo_food.json │ │ │ │ ├── hoglin_food.json │ │ │ │ ├── llama_tempt_items.json │ │ │ │ ├── strider_food.json │ │ │ │ ├── ignored_by_piglin_babies.json │ │ │ │ ├── parrot_poisonous_food.json │ │ │ │ ├── sniffer_food.json │ │ │ │ ├── axolotl_food.json │ │ │ │ ├── cat_food.json │ │ │ │ ├── coals.json │ │ │ │ ├── llama_food.json │ │ │ │ ├── ocelot_food.json │ │ │ │ ├── smelts_to_glass.json │ │ │ │ ├── compasses.json │ │ │ │ ├── fox_food.json │ │ │ │ ├── piglin_food.json │ │ │ │ ├── buttons.json │ │ │ │ ├── coal_ores.json │ │ │ │ ├── dampens_vibrations.json │ │ │ │ ├── fences.json │ │ │ │ ├── iron_ores.json │ │ │ │ ├── lapis_ores.json │ │ │ │ ├── lectern_books.json │ │ │ │ ├── soul_fire_base_blocks.json │ │ │ │ ├── copper_ores.json │ │ │ │ ├── creeper_igniters.json │ │ │ │ ├── diamond_ores.json │ │ │ │ ├── emerald_ores.json │ │ │ │ ├── bamboo_blocks.json │ │ │ │ ├── redstone_ores.json │ │ │ │ ├── wart_blocks.json │ │ │ │ ├── decorated_pot_ingredients.json │ │ │ │ ├── pig_food.json │ │ │ │ ├── stone_buttons.json │ │ │ │ ├── anvil.json │ │ │ │ ├── arrows.json │ │ │ │ ├── strider_tempt_items.json │ │ │ │ ├── rabbit_food.json │ │ │ │ ├── logs.json │ │ │ │ ├── completes_find_tree_tutorial.json │ │ │ │ ├── gold_ores.json │ │ │ │ ├── piglin_repellents.json │ │ │ │ ├── stone_crafting_materials.json │ │ │ │ ├── stone_tool_materials.json │ │ │ │ ├── horse_tempt_items.json │ │ │ │ ├── rails.json │ │ │ │ ├── sand.json │ │ │ │ ├── oak_logs.json │ │ │ │ ├── trimmable_armor.json │ │ │ │ ├── birch_logs.json │ │ │ │ ├── acacia_logs.json │ │ │ │ ├── cherry_logs.json │ │ │ │ ├── jungle_logs.json │ │ │ │ ├── spruce_logs.json │ │ │ │ └── tall_flowers.json │ │ │ ├── damage_type │ │ │ │ ├── no_impact.json │ │ │ │ ├── is_drowning.json │ │ │ │ ├── is_freezing.json │ │ │ │ ├── bypasses_effects.json │ │ │ │ ├── wither_immune_to.json │ │ │ │ ├── burns_armor_stands.json │ │ │ │ ├── is_lightning.json │ │ │ │ ├── is_player_attack.json │ │ │ │ ├── no_anger.json │ │ │ │ ├── always_triggers_silverfish.json │ │ │ │ ├── bypasses_enchantments.json │ │ │ │ ├── always_hurts_ender_dragons.json │ │ │ │ ├── always_most_significant_fall.json │ │ │ │ ├── is_fall.json │ │ │ │ ├── burn_from_stepping.json │ │ │ │ ├── ignites_armor_stands.json │ │ │ │ ├── bypasses_resistance.json │ │ │ │ ├── bypasses_invulnerability.json │ │ │ │ ├── can_break_armor_stand.json │ │ │ │ ├── avoids_guardian_thorns.json │ │ │ │ ├── damages_helmet.json │ │ │ │ ├── bypasses_shield.json │ │ │ │ ├── witch_resistant_to.json │ │ │ │ └── is_explosion.json │ │ │ ├── banner_pattern │ │ │ │ └── pattern_item │ │ │ │ │ ├── flow.json │ │ │ │ │ ├── flower.json │ │ │ │ │ ├── globe.json │ │ │ │ │ ├── guster.json │ │ │ │ │ ├── mojang.json │ │ │ │ │ ├── piglin.json │ │ │ │ │ ├── skull.json │ │ │ │ │ └── creeper.json │ │ │ ├── enchantment │ │ │ │ ├── smelts_loot.json │ │ │ │ ├── double_trade_price.json │ │ │ │ ├── in_enchanting_table.json │ │ │ │ ├── on_traded_equipment.json │ │ │ │ ├── prevents_ice_melting.json │ │ │ │ ├── prevents_infested_spawns.json │ │ │ │ ├── on_mob_spawn_equipment.json │ │ │ │ ├── prevents_bee_spawns_when_mining.json │ │ │ │ ├── prevents_decorated_pot_shattering.json │ │ │ │ ├── exclusive_set │ │ │ │ │ ├── bow.json │ │ │ │ │ ├── mining.json │ │ │ │ │ ├── crossbow.json │ │ │ │ │ ├── riptide.json │ │ │ │ │ └── boots.json │ │ │ │ └── curse.json │ │ │ ├── entity_type │ │ │ │ ├── beehive_inhabitors.json │ │ │ │ ├── can_turn_in_boats.json │ │ │ │ ├── illager_friends.json │ │ │ │ ├── immune_to_oozing.json │ │ │ │ ├── wither_friends.json │ │ │ │ ├── deflects_projectiles.json │ │ │ │ ├── immune_to_infested.json │ │ │ │ ├── sensitive_to_impaling.json │ │ │ │ ├── sensitive_to_smite.json │ │ │ │ ├── ignores_poison_and_regen.json │ │ │ │ ├── inverted_healing_and_harm.json │ │ │ │ ├── sensitive_to_bane_of_arthropods.json │ │ │ │ ├── arrows.json │ │ │ │ ├── frog_food.json │ │ │ │ ├── non_controlling_rider.json │ │ │ │ ├── freeze_hurts_extra_types.json │ │ │ │ ├── axolotl_always_hostiles.json │ │ │ │ ├── redirectable_projectile.json │ │ │ │ ├── undead.json │ │ │ │ ├── illager.json │ │ │ │ ├── powder_snow_walkable_mobs.json │ │ │ │ └── freeze_immune_entity_types.json │ │ │ ├── worldgen │ │ │ │ ├── biome │ │ │ │ │ ├── spawns_gold_rabbits.json │ │ │ │ │ ├── has_structure │ │ │ │ │ │ ├── swamp_hut.json │ │ │ │ │ │ ├── ancient_city.json │ │ │ │ │ │ ├── desert_pyramid.json │ │ │ │ │ │ ├── shipwreck.json │ │ │ │ │ │ ├── village_desert.json │ │ │ │ │ │ ├── village_savanna.json │ │ │ │ │ │ ├── village_taiga.json │ │ │ │ │ │ ├── buried_treasure.json │ │ │ │ │ │ ├── mineshaft_mesa.json │ │ │ │ │ │ ├── nether_fortress.json │ │ │ │ │ │ ├── ruined_portal_desert.json │ │ │ │ │ │ ├── shipwreck_beached.json │ │ │ │ │ │ ├── stronghold.json │ │ │ │ │ │ ├── village_snowy.json │ │ │ │ │ │ ├── woodland_mansion.json │ │ │ │ │ │ ├── nether_fossil.json │ │ │ │ │ │ ├── ocean_monument.json │ │ │ │ │ │ ├── ruined_portal_jungle.json │ │ │ │ │ │ ├── ruined_portal_nether.json │ │ │ │ │ │ ├── ruined_portal_ocean.json │ │ │ │ │ │ ├── village_plains.json │ │ │ │ │ │ ├── end_city.json │ │ │ │ │ │ ├── jungle_temple.json │ │ │ │ │ │ ├── ruined_portal_swamp.json │ │ │ │ │ │ ├── igloo.json │ │ │ │ │ │ └── ocean_ruin_warm.json │ │ │ │ │ ├── mineshaft_blocking.json │ │ │ │ │ ├── reduce_water_ambient_spawns.json │ │ │ │ │ ├── without_patrol_spawns.json │ │ │ │ │ ├── without_zombie_sieges.json │ │ │ │ │ ├── more_frequent_drowned_spawns.json │ │ │ │ │ ├── produces_corals_from_bonemeal.json │ │ │ │ │ ├── without_wandering_trader_spawns.json │ │ │ │ │ ├── is_beach.json │ │ │ │ │ ├── allows_tropical_fish_spawns_at_any_height.json │ │ │ │ │ ├── is_river.json │ │ │ │ │ ├── has_closer_water_fog.json │ │ │ │ │ ├── plays_underwater_music.json │ │ │ │ │ ├── allows_surface_slime_spawns.json │ │ │ │ │ ├── required_ocean_monument_surrounding.json │ │ │ │ │ ├── is_jungle.json │ │ │ │ │ ├── polar_bears_spawn_on_alternate_blocks.json │ │ │ │ │ ├── is_badlands.json │ │ │ │ │ ├── is_savanna.json │ │ │ │ │ ├── is_hill.json │ │ │ │ │ └── water_on_map_outlines.json │ │ │ │ ├── structure │ │ │ │ │ ├── cats_spawn_in.json │ │ │ │ │ ├── cats_spawn_as_black.json │ │ │ │ │ ├── eye_of_ender_located.json │ │ │ │ │ ├── on_ocean_explorer_maps.json │ │ │ │ │ ├── on_treasure_maps.json │ │ │ │ │ ├── on_woodland_explorer_maps.json │ │ │ │ │ ├── on_trial_chambers_maps.json │ │ │ │ │ ├── mineshaft.json │ │ │ │ │ ├── shipwreck.json │ │ │ │ │ ├── dolphin_located.json │ │ │ │ │ └── ocean_ruin.json │ │ │ │ └── world_preset │ │ │ │ │ └── extended.json │ │ │ ├── game_event │ │ │ │ ├── allay_can_listen.json │ │ │ │ └── shrieker_can_listen.json │ │ │ ├── fluid │ │ │ │ ├── lava.json │ │ │ │ └── water.json │ │ │ ├── point_of_interest_type │ │ │ │ ├── bee_home.json │ │ │ │ └── village.json │ │ │ ├── cat_variant │ │ │ │ └── full_moon_spawns.json │ │ │ └── instrument │ │ │ │ └── goat_horns.json │ │ │ ├── painting_variant │ │ │ ├── bomb.json │ │ │ ├── bust.json │ │ │ ├── fern.json │ │ │ ├── fire.json │ │ │ ├── orb.json │ │ │ ├── pond.json │ │ │ ├── pool.json │ │ │ ├── sea.json │ │ │ ├── void.json │ │ │ ├── wind.json │ │ │ ├── alban.json │ │ │ ├── aztec.json │ │ │ ├── aztec2.json │ │ │ ├── cotan.json │ │ │ ├── earth.json │ │ │ ├── graham.json │ │ │ ├── humble.json │ │ │ ├── kebab.json │ │ │ ├── match.json │ │ │ ├── plant.json │ │ │ ├── stage.json │ │ │ ├── sunset.json │ │ │ ├── tides.json │ │ │ ├── water.json │ │ │ ├── wither.json │ │ │ ├── backyard.json │ │ │ ├── baroque.json │ │ │ ├── bouquet.json │ │ │ ├── cavebird.json │ │ │ ├── changing.json │ │ │ ├── courbet.json │ │ │ ├── creebet.json │ │ │ ├── endboss.json │ │ │ ├── fighters.json │ │ │ ├── finding.json │ │ │ ├── lowmist.json │ │ │ ├── owlemons.json │ │ │ ├── passage.json │ │ │ ├── pigscene.json │ │ │ ├── pointer.json │ │ │ ├── skeleton.json │ │ │ ├── unpacked.json │ │ │ ├── wanderer.json │ │ │ ├── wasteland.json │ │ │ ├── donkey_kong.json │ │ │ ├── meditative.json │ │ │ ├── sunflowers.json │ │ │ ├── burning_skull.json │ │ │ ├── prairie_ride.json │ │ │ └── skull_and_roses.json │ │ │ ├── recipe │ │ │ ├── armor_dye.json │ │ │ ├── decorated_pot.json │ │ │ ├── map_cloning.json │ │ │ ├── repair_item.json │ │ │ ├── book_cloning.json │ │ │ ├── firework_star.json │ │ │ ├── map_extending.json │ │ │ ├── tipped_arrow.json │ │ │ ├── banner_duplicate.json │ │ │ ├── firework_rocket.json │ │ │ ├── suspicious_stew.json │ │ │ ├── firework_star_fade.json │ │ │ ├── shield_decoration.json │ │ │ └── shulker_box_coloring.json │ │ │ ├── damage_type │ │ │ ├── explosion.json │ │ │ ├── sonic_boom.json │ │ │ ├── arrow.json │ │ │ ├── magic.json │ │ │ ├── player_explosion.json │ │ │ ├── spit.json │ │ │ ├── sting.json │ │ │ ├── cactus.json │ │ │ ├── dry_out.json │ │ │ ├── generic.json │ │ │ ├── in_wall.json │ │ │ ├── mob_attack.json │ │ │ ├── starve.json │ │ │ ├── thrown.json │ │ │ ├── trident.json │ │ │ ├── wind_charge.json │ │ │ ├── wither.json │ │ │ ├── cramming.json │ │ │ ├── falling_anvil.json │ │ │ ├── fireworks.json │ │ │ ├── mob_projectile.json │ │ │ ├── player_attack.json │ │ │ ├── stalagmite.json │ │ │ ├── dragon_breath.json │ │ │ ├── falling_block.json │ │ │ ├── fly_into_wall.json │ │ │ ├── generic_kill.json │ │ │ ├── mob_attack_no_aggro.json │ │ │ ├── out_of_world.json │ │ │ ├── wither_skull.json │ │ │ ├── indirect_magic.json │ │ │ ├── lightning_bolt.json │ │ │ ├── outside_border.json │ │ │ ├── falling_stalactite.json │ │ │ ├── drown.json │ │ │ ├── lava.json │ │ │ ├── thorns.json │ │ │ ├── campfire.json │ │ │ ├── fireball.json │ │ │ ├── freeze.json │ │ │ ├── hot_floor.json │ │ │ ├── in_fire.json │ │ │ ├── on_fire.json │ │ │ ├── fall.json │ │ │ ├── unattributed_fireball.json │ │ │ ├── sweet_berry_bush.json │ │ │ └── bad_respawn_point.json │ │ │ ├── loot_table │ │ │ ├── blocks │ │ │ │ ├── cake.json │ │ │ │ ├── fire.json │ │ │ │ ├── vault.json │ │ │ │ ├── spawner.json │ │ │ │ ├── frogspawn.json │ │ │ │ ├── frosted_ice.json │ │ │ │ ├── powder_snow.json │ │ │ │ ├── soul_fire.json │ │ │ │ ├── nether_portal.json │ │ │ │ ├── trial_spawner.json │ │ │ │ ├── budding_amethyst.json │ │ │ │ ├── suspicious_sand.json │ │ │ │ ├── suspicious_gravel.json │ │ │ │ └── reinforced_deepslate.json │ │ │ └── entities │ │ │ │ ├── bat.json │ │ │ │ ├── bee.json │ │ │ │ ├── fox.json │ │ │ │ ├── vex.json │ │ │ │ ├── allay.json │ │ │ │ ├── camel.json │ │ │ │ ├── frog.json │ │ │ │ ├── giant.json │ │ │ │ ├── goat.json │ │ │ │ ├── ocelot.json │ │ │ │ ├── piglin.json │ │ │ │ ├── player.json │ │ │ │ ├── wither.json │ │ │ │ ├── wolf.json │ │ │ │ ├── axolotl.json │ │ │ │ ├── sniffer.json │ │ │ │ ├── tadpole.json │ │ │ │ ├── villager.json │ │ │ │ ├── armadillo.json │ │ │ │ ├── armor_stand.json │ │ │ │ ├── endermite.json │ │ │ │ ├── illusioner.json │ │ │ │ ├── silverfish.json │ │ │ │ ├── ender_dragon.json │ │ │ │ ├── piglin_brute.json │ │ │ │ └── wandering_trader.json │ │ │ ├── banner_pattern │ │ │ ├── base.json │ │ │ ├── cross.json │ │ │ ├── flow.json │ │ │ ├── globe.json │ │ │ ├── skull.json │ │ │ ├── border.json │ │ │ ├── bricks.json │ │ │ ├── circle.json │ │ │ ├── flower.json │ │ │ ├── guster.json │ │ │ ├── mojang.json │ │ │ ├── piglin.json │ │ │ ├── creeper.json │ │ │ ├── gradient.json │ │ │ ├── rhombus.json │ │ │ ├── stripe_top.json │ │ │ ├── gradient_up.json │ │ │ ├── stripe_left.json │ │ │ ├── curly_border.json │ │ │ ├── diagonal_left.json │ │ │ ├── half_vertical.json │ │ │ ├── small_stripes.json │ │ │ ├── stripe_bottom.json │ │ │ ├── stripe_center.json │ │ │ ├── stripe_middle.json │ │ │ ├── stripe_right.json │ │ │ ├── triangle_top.json │ │ │ ├── triangles_top.json │ │ │ ├── diagonal_right.json │ │ │ ├── half_horizontal.json │ │ │ ├── square_top_left.json │ │ │ ├── straight_cross.json │ │ │ ├── stripe_downleft.json │ │ │ ├── triangle_bottom.json │ │ │ ├── diagonal_up_left.json │ │ │ ├── square_top_right.json │ │ │ ├── stripe_downright.json │ │ │ ├── triangles_bottom.json │ │ │ ├── diagonal_up_right.json │ │ │ ├── square_bottom_left.json │ │ │ ├── half_vertical_right.json │ │ │ ├── square_bottom_right.json │ │ │ └── half_horizontal_bottom.json │ │ │ ├── datapacks │ │ │ └── trade_rebalance │ │ │ │ └── data │ │ │ │ └── minecraft │ │ │ │ ├── tags │ │ │ │ ├── enchantment │ │ │ │ │ └── trades │ │ │ │ │ │ ├── swamp_special.json │ │ │ │ │ │ ├── taiga_special.json │ │ │ │ │ │ ├── desert_special.json │ │ │ │ │ │ ├── jungle_special.json │ │ │ │ │ │ ├── plains_special.json │ │ │ │ │ │ ├── savanna_special.json │ │ │ │ │ │ ├── snow_special.json │ │ │ │ │ │ ├── desert_common.json │ │ │ │ │ │ ├── plains_common.json │ │ │ │ │ │ ├── snow_common.json │ │ │ │ │ │ └── taiga_common.json │ │ │ │ └── worldgen │ │ │ │ │ └── structure │ │ │ │ │ ├── on_swamp_explorer_maps.json │ │ │ │ │ ├── on_desert_village_maps.json │ │ │ │ │ ├── on_plains_village_maps.json │ │ │ │ │ ├── on_snowy_village_maps.json │ │ │ │ │ ├── on_taiga_village_maps.json │ │ │ │ │ ├── on_jungle_explorer_maps.json │ │ │ │ │ └── on_savanna_village_maps.json │ │ │ │ └── enchantment_provider │ │ │ │ └── trades │ │ │ │ ├── desert_armorer_boots_4.json │ │ │ │ ├── swamp_armorer_boots_4.json │ │ │ │ ├── desert_armorer_chestplate_4.json │ │ │ │ ├── desert_armorer_chestplate_5.json │ │ │ │ ├── desert_armorer_helmet_4.json │ │ │ │ ├── desert_armorer_leggings_4.json │ │ │ │ ├── desert_armorer_leggings_5.json │ │ │ │ ├── jungle_armorer_boots_4.json │ │ │ │ ├── jungle_armorer_helmet_4.json │ │ │ │ ├── plains_armorer_boots_4.json │ │ │ │ ├── plains_armorer_boots_5.json │ │ │ │ ├── plains_armorer_helmet_4.json │ │ │ │ ├── snow_armorer_boots_4.json │ │ │ │ ├── snow_armorer_boots_5.json │ │ │ │ ├── swamp_armorer_chestplate_4.json │ │ │ │ ├── swamp_armorer_helmet_4.json │ │ │ │ ├── swamp_armorer_helmet_5.json │ │ │ │ ├── swamp_armorer_leggings_4.json │ │ │ │ ├── jungle_armorer_boots_5.json │ │ │ │ ├── jungle_armorer_chestplate_4.json │ │ │ │ ├── jungle_armorer_leggings_4.json │ │ │ │ ├── plains_armorer_chestplate_4.json │ │ │ │ ├── plains_armorer_leggings_4.json │ │ │ │ ├── plains_armorer_leggings_5.json │ │ │ │ ├── savanna_armorer_boots_4.json │ │ │ │ ├── savanna_armorer_helmet_4.json │ │ │ │ ├── savanna_armorer_helmet_5.json │ │ │ │ ├── snow_armorer_helmet_4.json │ │ │ │ ├── snow_armorer_helmet_5.json │ │ │ │ ├── swamp_armorer_boots_5.json │ │ │ │ ├── savanna_armorer_chestplate_4.json │ │ │ │ ├── savanna_armorer_chestplate_5.json │ │ │ │ ├── savanna_armorer_leggings_4.json │ │ │ │ ├── taiga_armorer_chestplate_5.json │ │ │ │ ├── taiga_armorer_leggings_5.json │ │ │ │ └── jungle_armorer_helmet_5.json │ │ │ └── enchantment_provider │ │ │ ├── raid │ │ │ ├── vindicator.json │ │ │ ├── vindicator_post_wave_5.json │ │ │ ├── pillager_post_wave_3.json │ │ │ └── pillager_post_wave_5.json │ │ │ ├── enderman_loot_drop.json │ │ │ ├── pillager_spawn_crossbow.json │ │ │ └── mob_spawn_equipment.json │ └── play │ │ └── statistics │ │ ├── StatisticsEntry.java │ │ └── StatisticsKey.java │ ├── statemachine │ ├── StateTickCallback.java │ ├── StateTickPredicate.java │ ├── StateChangeCallback.java │ └── ThrownReturn.java │ └── remoteindicators │ └── Shape.java ├── gson-2.10.1-sources.jar └── .gitignore /gson-2.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenScripter/minecraft-bot/HEAD/gson-2.10.1.jar -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/density_function/zero.json: -------------------------------------------------------------------------------- 1 | 0.0 -------------------------------------------------------------------------------- /gson-2.10.1-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenScripter/minecraft-bot/HEAD/gson-2.10.1-sources.jar -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/processor_list/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "processors": [] 3 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/incorrect_for_diamond_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/incorrect_for_netherite_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .classpath 3 | .project 4 | .settings/ 5 | bin/ 6 | test.dat 7 | testout.dat 8 | accountlist.json 9 | -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/bee_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:flowers" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/camel_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cactus" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/cow_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:wheat" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/goat_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:wheat" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/panda_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bamboo" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/sheep_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:wheat" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/wolf_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:meat" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/no_impact.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:drown" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/bow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bow" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/mace.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mace" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/frog_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:slime_ball" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/turtle_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:seagrass" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/axolotls_spawnable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:clay" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/strider_warm_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lava" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/is_drowning.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:drown" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/is_freezing.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:freeze" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/armadillo_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:spider_eye" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:swords" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/trident.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:trident" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/hoglin_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:crimson_fungus" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/llama_tempt_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:hay_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/strider_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:warped_fungus" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/kelp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:kelp", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/flow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:flow" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/trail_ruins_replaceable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:gravel" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/bypasses_effects.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:starve" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/wither_immune_to.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:drown" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/smelts_loot.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fire_aspect" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/beehive_inhabitors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bee" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/can_turn_in_boats.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:breeze" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/illager_friends.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:illager" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/immune_to_oozing.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:slime" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/wither_friends.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:undead" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/crossbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:crossbow" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/fishing.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fishing_rod" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/leg_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:leg_armor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/ignored_by_piglin_babies.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:leather" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/parrot_poisonous_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cookie" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/sniffer_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:torchflower_seeds" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:vines", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/noodle.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/template_pool/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "elements": [], 3 | "fallback": "minecraft:empty" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/bomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:bomb", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/bust.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:bust", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/fern.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:fern", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:fire", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/orb.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:orb", 3 | "height": 4, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/pond.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:pond", 3 | "height": 4, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/pool.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:pool", 3 | "height": 1, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/sea.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:sea", 3 | "height": 1, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/void.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:void", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/wind.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:wind", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:flower" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/globe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:globe" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/guster.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:guster" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/mojang.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mojang" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/piglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:piglin" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/skull.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:skull" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/animals_spawnable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:grass_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/does_not_block_hoppers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:beehives" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/enchantment_power_provider.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bookshelf" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/mooshrooms_spawnable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mycelium" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/occludes_vibration_signals.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:wool" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/prevent_mob_spawning_inside.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:rails" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/sniffer_egg_hatch_boost.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:moss_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/unstable_bottom_center.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:fence_gates" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/vibration_resonators.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:amethyst_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/burns_armor_stands.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:on_fire" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/is_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lightning_bolt" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/is_player_attack.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:player_attack" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/no_anger.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mob_attack_no_aggro" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/double_trade_price.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:treasure" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/deflects_projectiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:breeze" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/immune_to_infested.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:silverfish" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/sensitive_to_impaling.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:aquatic" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/sensitive_to_smite.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:undead" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/axolotl_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:tropical_fish_bucket" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/chest_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:chest_armor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/foot_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:foot_armor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/head_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:head_armor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/spawns_gold_rabbits.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:desert" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/cats_spawn_in.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:swamp_hut" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/blue_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:blue_ice", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/ice_spike.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:ice_spike", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "minecraft:nether" 3 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/cave_layer.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/ore_gap.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -5 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/ore_vein_a.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/ore_vein_b.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/pile_hay.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:pile_hay", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/pile_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:pile_ice", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/alban.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:alban", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/aztec.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:aztec", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/aztec2.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:aztec2", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/cotan.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:cotan", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:earth", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/graham.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:graham", 3 | "height": 2, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/humble.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:humble", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/kebab.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:kebab", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/match.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:match", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:plant", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/stage.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stage", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/sunset.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:sunset", 3 | "height": 1, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/tides.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:tides", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:water", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/wither.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:wither", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/armor_dye.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_armordye", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/decorated_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_decorated_pot", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/map_cloning.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_mapcloning", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/repair_item.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_repairitem", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/banner_pattern/pattern_item/creeper.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:creeper" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fire", 4 | "minecraft:soul_fire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/infiniburn_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:infiniburn_overworld" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ice" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/always_triggers_silverfish.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:magic" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/bypasses_enchantments.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sonic_boom" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/in_enchanting_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:non_treasure" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/on_traded_equipment.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:non_treasure" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/prevents_ice_melting.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:silk_touch" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/prevents_infested_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:silk_touch" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/ignores_poison_and_regen.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:undead" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/inverted_healing_and_harm.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:undead" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/game_event/allay_can_listen.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:note_block_play" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/cat_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cod", 4 | "minecraft:salmon" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/coals.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:coal", 4 | "minecraft:charcoal" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/swamp_hut.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:swamp" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/mineshaft_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:deep_dark" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/bonus_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:bonus_chest", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/desert_well.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:desert_well", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/end_island.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:end_island", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/overworld.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "minecraft:overworld" 3 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/aquifer_barrier.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -3 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/aquifer_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -1 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/noodle_ridge_a.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/noodle_ridge_b.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/noodle_thickness.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/ore_veininess.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/pillar_rareness.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/pillar_thickness.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_2d.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_3d_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_3d_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/surface_swamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -2 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/pile_melon.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:pile_melon", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/pile_snow.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:pile_snow", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/backyard.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:backyard", 3 | "height": 4, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/baroque.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:baroque", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/bouquet.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:bouquet", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/cavebird.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:cavebird", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/changing.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:changing", 3 | "height": 2, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/courbet.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:courbet", 3 | "height": 1, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/creebet.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:creebet", 3 | "height": 1, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/endboss.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:endboss", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/fighters.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:fighters", 3 | "height": 2, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/finding.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:finding", 3 | "height": 2, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/lowmist.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:lowmist", 3 | "height": 2, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/owlemons.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:owlemons", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/passage.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:passage", 3 | "height": 2, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/pigscene.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:pigscene", 3 | "height": 4, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/pointer.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:pointer", 3 | "height": 4, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/skeleton.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:skeleton", 3 | "height": 3, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/unpacked.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:unpacked", 3 | "height": 4, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/wanderer.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:wanderer", 3 | "height": 2, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/wasteland.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:wasteland", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/book_cloning.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_bookcloning", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/firework_star.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_firework_star", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/map_extending.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_mapextending", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/tipped_arrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_tippedarrow", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/beehives.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bee_nest", 4 | "minecraft:beehive" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/enchantment_power_transmitter.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:replaceable" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/incorrect_for_iron_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:needs_diamond_tool" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/always_hurts_ender_dragons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_explosion" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:non_treasure" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/fluid/lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lava", 4 | "minecraft:flowing_lava" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/fluid/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:water", 4 | "minecraft:flowing_water" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/llama_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:wheat", 4 | "minecraft:hay_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/ocelot_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cod", 4 | "minecraft:salmon" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ancient_city.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:deep_dark" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/desert_pyramid.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:desert" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/shipwreck.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_ocean" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:desert" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:savanna" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:taiga" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/reduce_water_ambient_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_river" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/without_patrol_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mushroom_fields" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/without_zombie_sieges.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mushroom_fields" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:swamp_hut" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:stronghold" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:monument" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/on_treasure_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:buried_treasure" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mansion" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/basalt_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:basalt_pillar", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/chorus_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:chorus_plant", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/end_platform.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:end_platform", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/monster_room.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:monster_room", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/weeping_vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:weeping_vines", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/badlands_pillar_roof.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/clay_bands_offset.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/iceberg_pillar_roof.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -3 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/nether_state_selector.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -4 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0 5 | ], 6 | "firstOctave": -7 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_3d_rarity.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -11 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_roughness.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -5 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/flower_plain.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:flower_plain", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/patch_cactus.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:patch_cactus", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/pile_pumpkin.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:pile_pumpkin", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "explosion", 4 | "scaling": "always" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "sonic_boom", 4 | "scaling": "always" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/cake" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/fire" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/vault.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/vault" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/bat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/bat" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/bee.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/bee" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/fox.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/fox" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/vex.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/vex" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/donkey_kong.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:donkey_kong", 3 | "height": 3, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/meditative.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:meditative", 3 | "height": 1, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/sunflowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:sunflowers", 3 | "height": 3, 4 | "width": 3 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/banner_duplicate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_bannerduplicate", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/firework_rocket.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_firework_rocket", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/suspicious_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_suspiciousstew", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/dragon_transparent.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:light", 4 | "#minecraft:fire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/dripstone_replaceable_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:base_stone_overworld" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/smelts_to_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sand", 4 | "minecraft:red_sand" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/valid_spawn.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:grass_block", 4 | "minecraft:podzol" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/always_most_significant_fall.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:out_of_world" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/is_fall.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fall", 4 | "minecraft:stalagmite" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:silk_touch" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:silk_touch" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:arthropod" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/smelts_to_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sand", 4 | "minecraft:red_sand" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/buried_treasure.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_beach" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/mineshaft_mesa.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_badlands" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_nether" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_desert.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:desert" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/shipwreck_beached.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_beach" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/stronghold.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_overworld" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:snowy_plains" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/woodland_mansion.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:dark_forest" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/more_frequent_drowned_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_river" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/produces_corals_from_bonemeal.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:warm_ocean" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/without_wandering_trader_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:the_void" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:trial_chambers" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/freeze_top_layer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:freeze_top_layer", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/glowstone_extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:glowstone_blob", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/aquifer_fluid_level_spread.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -5 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_2d_elevation.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_2d_modulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -11 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_2d_thickness.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -11 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_3d_thickness.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/base.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:base", 3 | "translation_key": "block.minecraft.banner.base" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/cross.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:cross", 3 | "translation_key": "block.minecraft.banner.cross" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/flow.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:flow", 3 | "translation_key": "block.minecraft.banner.flow" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/globe.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:globe", 3 | "translation_key": "block.minecraft.banner.globe" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/skull.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:skull", 3 | "translation_key": "block.minecraft.banner.skull" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/spawner" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/allay.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/allay" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/camel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/camel" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/frog.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/frog" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/giant.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/giant" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/goat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/goat" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/ocelot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/ocelot" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/piglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/piglin" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/player.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/player" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/wither.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/wither" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/wolf.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/wolf" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/burning_skull.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:burning_skull", 3 | "height": 4, 4 | "width": 4 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/prairie_ride.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:prairie_ride", 3 | "height": 2, 4 | "width": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/firework_star_fade.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_firework_star_fade", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/shield_decoration.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_shielddecoration", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/all_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:signs", 4 | "#minecraft:all_hanging_signs" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/campfires.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:campfire", 4 | "minecraft:soul_campfire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/nylium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:crimson_nylium", 4 | "minecraft:warped_nylium" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:standing_signs", 4 | "#minecraft:wall_signs" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/arrows.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:arrow", 4 | "minecraft:spectral_arrow" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/frog_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:slime", 4 | "minecraft:magma_cube" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/game_event/shrieker_can_listen.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sculk_sensor_tendrils_clicking" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/compasses.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:compass", 4 | "minecraft:recovery_compass" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/fox_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sweet_berries", 4 | "minecraft:glow_berries" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/piglin_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:porkchop", 4 | "minecraft:cooked_porkchop" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/nether_fossil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_sand_valley" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ocean_monument.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_deep_ocean" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_jungle.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_jungle" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_nether" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_ocean.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_ocean" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/is_beach.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:beach", 4 | "minecraft:snowy_beach" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/void_start_platform.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:void_start_platform", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/aquifer_fluid_level_floodedness.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -7 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/spaghetti_roughness_modulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0 4 | ], 5 | "firstOctave": -8 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/patch_berry_bush.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:patch_berry_bush", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/patch_taiga_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:patch_taiga_grass", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/border.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:border", 3 | "translation_key": "block.minecraft.banner.border" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:bricks", 3 | "translation_key": "block.minecraft.banner.bricks" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/circle.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:circle", 3 | "translation_key": "block.minecraft.banner.circle" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:flower", 3 | "translation_key": "block.minecraft.banner.flower" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/guster.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:guster", 3 | "translation_key": "block.minecraft.banner.guster" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/mojang.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:mojang", 3 | "translation_key": "block.minecraft.banner.mojang" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/piglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:piglin", 3 | "translation_key": "block.minecraft.banner.piglin" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/frogspawn.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/frogspawn" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/frosted_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/frosted_ice" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/powder_snow.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/powder_snow" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/soul_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/soul_fire" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/axolotl.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/axolotl" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/sniffer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/sniffer" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/tadpole.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/tadpole" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/villager.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/villager" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/painting_variant/skull_and_roses.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:skull_and_roses", 3 | "height": 2, 4 | "width": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/recipe/shulker_box_coloring.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_special_shulkerboxcoloring", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:wooden_buttons", 4 | "#minecraft:stone_buttons" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/cave_vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cave_vines_plant", 4 | "minecraft:cave_vines" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/coal_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:coal_ore", 4 | "minecraft:deepslate_coal_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/dampens_vibrations.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:wool", 4 | "#minecraft:wool_carpets" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:wooden_fences", 4 | "minecraft:nether_brick_fence" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/iron_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:iron_ore", 4 | "minecraft:deepslate_iron_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/lapis_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lapis_ore", 4 | "minecraft:deepslate_lapis_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/small_dripleaf_placeable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:clay", 4 | "minecraft:moss_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/soul_speed_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_sand", 4 | "minecraft:soul_soil" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/exclusive_set/bow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:infinity", 4 | "minecraft:mending" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:wooden_buttons", 4 | "#minecraft:stone_buttons" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/coal_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:coal_ore", 4 | "minecraft:deepslate_coal_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/dampens_vibrations.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:wool", 4 | "#minecraft:wool_carpets" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/sharp_weapon.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:swords", 4 | "#minecraft:axes" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:wooden_fences", 4 | "minecraft:nether_brick_fence" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/iron_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:iron_ore", 4 | "minecraft:deepslate_iron_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/lapis_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lapis_ore", 4 | "minecraft:deepslate_lapis_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/lectern_books.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:written_book", 4 | "minecraft:writable_book" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/soul_fire_base_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_sand", 4 | "minecraft:soul_soil" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/allows_tropical_fish_spawns_at_any_height.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lush_caves" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/is_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:river", 4 | "minecraft:frozen_river" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/surface.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0 6 | ], 7 | "firstOctave": -6 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/creeper.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:creeper", 3 | "translation_key": "block.minecraft.banner.creeper" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/gradient.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:gradient", 3 | "translation_key": "block.minecraft.banner.gradient" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/rhombus.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:rhombus", 3 | "translation_key": "block.minecraft.banner.rhombus" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "arrow", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "magic", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/player_explosion.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "explosion.player", 4 | "scaling": "always" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/spit.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "mob", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "sting", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/nether_portal.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/nether_portal" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/trial_spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/trial_spawner" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/armadillo.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/armadillo" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/armor_stand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/armor_stand" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/endermite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/endermite" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/illusioner.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/illusioner" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/silverfish.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/silverfish" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/blocks_wind_charge_explosions.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:barrier", 4 | "minecraft:bedrock" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/copper_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:copper_ore", 4 | "minecraft:deepslate_copper_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/deepslate_ore_replaceables.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:deepslate", 4 | "minecraft:tuff" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/frog_prefer_jump_to.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lily_pad", 4 | "minecraft:big_dripleaf" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/infiniburn_end.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:infiniburn_overworld", 4 | "minecraft:bedrock" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/infiniburn_overworld.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:netherrack", 4 | "minecraft:magma_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/invalid_spawn_inside.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:end_portal", 4 | "minecraft:end_gateway" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/soul_fire_base_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_sand", 4 | "minecraft:soul_soil" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/wither_summon_base_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_sand", 4 | "minecraft:soul_soil" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/burn_from_stepping.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:campfire", 4 | "minecraft:hot_floor" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/ignites_armor_stands.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:in_fire", 4 | "minecraft:campfire" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/curse.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:binding_curse", 4 | "minecraft:vanishing_curse" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/exclusive_set/mining.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fortune", 4 | "minecraft:silk_touch" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/non_controlling_rider.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:slime", 4 | "minecraft:magma_cube" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/copper_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:copper_ore", 4 | "minecraft:deepslate_copper_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/creeper_igniters.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:flint_and_steel", 4 | "minecraft:fire_charge" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/diamond_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:diamond_ore", 4 | "minecraft:deepslate_diamond_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/emerald_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:emerald_ore", 4 | "minecraft:deepslate_emerald_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/point_of_interest_type/bee_home.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:beehive", 4 | "minecraft:bee_nest" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/sea_pickle.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:sea_pickle", 3 | "config": { 4 | "count": 20 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/cave_entrance.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 0.4, 4 | 0.5, 5 | 1.0 6 | ], 7 | "firstOctave": -7 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/iceberg_surface.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0 6 | ], 7 | "firstOctave": -6 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_top", 3 | "translation_key": "block.minecraft.banner.stripe_top" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "cactus", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "dryout", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "generic", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "inWall", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "mob", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "starve", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "thrown", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "trident", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/wind_charge.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "mob", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "wither", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/budding_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/budding_amethyst" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/suspicious_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/suspicious_sand" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/ender_dragon.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/ender_dragon" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/piglin_brute.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/piglin_brute" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/air.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:air", 4 | "minecraft:void_air", 5 | "minecraft:cave_air" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/bamboo_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bamboo_block", 4 | "minecraft:stripped_bamboo_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/diamond_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:diamond_ore", 4 | "minecraft:deepslate_diamond_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/emerald_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:emerald_ore", 4 | "minecraft:deepslate_emerald_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/redstone_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:redstone_ore", 4 | "minecraft:deepslate_redstone_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/wart_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:nether_wart_block", 4 | "minecraft:warped_wart_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/cat_variant/full_moon_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:default_spawns", 4 | "minecraft:all_black" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/exclusive_set/crossbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:multishot", 4 | "minecraft:piercing" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/exclusive_set/riptide.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:loyalty", 4 | "minecraft:channeling" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/bamboo_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bamboo_block", 4 | "minecraft:stripped_bamboo_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/fire_aspect.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:enchantable/sword", 4 | "minecraft:mace" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/weapon.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:enchantable/sharp_weapon", 4 | "minecraft:mace" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/redstone_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:redstone_ore", 4 | "minecraft:deepslate_redstone_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/wart_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:nether_wart_block", 4 | "minecraft:warped_wart_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_closer_water_fog.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:swamp", 4 | "minecraft:mangrove_swamp" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/mineshaft.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mineshaft", 4 | "minecraft:mineshaft_mesa" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/shipwreck.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:shipwreck", 4 | "minecraft:shipwreck_beached" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/badlands_surface.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0 6 | ], 7 | "firstOctave": -6 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/calcite.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 1.0 7 | ], 8 | "firstOctave": -9 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 1.0 7 | ], 8 | "firstOctave": -8 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 1.0 7 | ], 8 | "firstOctave": -4 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/offset.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 0.0 7 | ], 8 | "firstOctave": -3 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/sculk_patch_ancient_city.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:sculk_patch_ancient_city", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/gradient_up.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:gradient_up", 3 | "translation_key": "block.minecraft.banner.gradient_up" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_left", 3 | "translation_key": "block.minecraft.banner.stripe_left" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "cramming", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "anvil", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "fireworks", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/mob_projectile.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "mob", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "player", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "stalagmite", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/swamp_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mending" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fortune" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/enchantment_provider/raid/vindicator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:sharpness", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/suspicious_gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/suspicious_gravel" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/entities/wandering_trader.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "minecraft:entities/wandering_trader" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/camel_sand_step_sound_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:sand", 4 | "#minecraft:concrete_powder" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/crystal_sound_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:amethyst_block", 4 | "minecraft:budding_amethyst" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/snow.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:snow", 4 | "minecraft:snow_block", 5 | "minecraft:powder_snow" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/stone_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:stone_button", 4 | "minecraft:polished_blackstone_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/bypasses_resistance.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:out_of_world", 4 | "minecraft:generic_kill" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/enchantment/exclusive_set/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:frost_walker", 4 | "minecraft:depth_strider" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/decorated_pot_ingredients.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:brick", 4 | "#minecraft:decorated_pot_sherds" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/pig_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:carrot", 4 | "minecraft:potato", 5 | "minecraft:beetroot" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/stone_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:stone_button", 4 | "minecraft:polished_blackstone_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:plains", 4 | "minecraft:meadow" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/plays_underwater_music.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_ocean", 4 | "#minecraft:is_river" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/dolphin_located.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:ocean_ruin", 4 | "#minecraft:shipwreck" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/structure/ocean_ruin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ocean_ruin_cold", 4 | "minecraft:ocean_ruin_warm" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/world_preset/extended.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:normal", 4 | "minecraft:debug_all_block_states" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/bamboo_no_podzol.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:bamboo", 3 | "config": { 4 | "probability": 0.0 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/bamboo_some_podzol.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:bamboo", 3 | "config": { 4 | "probability": 0.2 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/seagrass_mid.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:seagrass", 3 | "config": { 4 | "probability": 0.6 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/seagrass_short.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:seagrass", 3 | "config": { 4 | "probability": 0.3 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/seagrass_tall.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:seagrass", 3 | "config": { 4 | "probability": 0.8 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/nether_wart.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.0, 5 | 0.0, 6 | 0.9 7 | ], 8 | "firstOctave": -3 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.0, 5 | 0.0, 6 | 0.35 7 | ], 8 | "firstOctave": -3 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/packed_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 1.0 7 | ], 8 | "firstOctave": -7 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/powder_snow.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 1.0 7 | ], 8 | "firstOctave": -6 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/play/statistics/StatisticsEntry.java: -------------------------------------------------------------------------------- 1 | package greenscripter.minecraft.play.statistics; 2 | 3 | public record StatisticsEntry(StatisticsKey key, int value) { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/curly_border.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:curly_border", 3 | "translation_key": "block.minecraft.banner.curly_border" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/diagonal_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:diagonal_left", 3 | "translation_key": "block.minecraft.banner.diagonal_left" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/half_vertical.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:half_vertical", 3 | "translation_key": "block.minecraft.banner.half_vertical" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/small_stripes.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:small_stripes", 3 | "translation_key": "block.minecraft.banner.small_stripes" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_bottom", 3 | "translation_key": "block.minecraft.banner.stripe_bottom" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_center.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_center", 3 | "translation_key": "block.minecraft.banner.stripe_center" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_middle.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_middle", 3 | "translation_key": "block.minecraft.banner.stripe_middle" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_right", 3 | "translation_key": "block.minecraft.banner.stripe_right" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/triangle_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:triangle_top", 3 | "translation_key": "block.minecraft.banner.triangle_top" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/triangles_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:triangles_top", 3 | "translation_key": "block.minecraft.banner.triangles_top" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "dragonBreath", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "fallingBlock", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "flyIntoWall", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "genericKill", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/mob_attack_no_aggro.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "mob", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "outOfWorld", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "witherSkull", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:efficiency" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/jungle_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:unbreaking" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:protection" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/savanna_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sharpness" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:silk_touch" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/enchantment_provider/enderman_loot_drop.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:silk_touch", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/enchantment_provider/pillager_spawn_crossbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:piercing", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/loot_table/blocks/reinforced_deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "random_sequence": "minecraft:blocks/reinforced_deepslate" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/all_hanging_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:ceiling_hanging_signs", 4 | "#minecraft:wall_hanging_signs" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:anvil", 4 | "minecraft:chipped_anvil", 5 | "minecraft:damaged_anvil" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/bypasses_invulnerability.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:out_of_world", 4 | "minecraft:generic_kill" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/can_break_armor_stand.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:player_attack", 4 | "minecraft:player_explosion" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/instrument/goat_horns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:regular_goat_horns", 4 | "#minecraft:screaming_goat_horns" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/anvil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:anvil", 4 | "minecraft:chipped_anvil", 5 | "minecraft:damaged_anvil" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/arrows.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:arrow", 4 | "minecraft:tipped_arrow", 5 | "minecraft:spectral_arrow" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/strider_tempt_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:strider_food", 4 | "minecraft:warped_fungus_on_a_stick" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/allows_surface_slime_spawns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:swamp", 4 | "minecraft:mangrove_swamp" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/end_city.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:end_highlands", 4 | "minecraft:end_midlands" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/jungle_temple.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bamboo_jungle", 4 | "minecraft:jungle" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/end_gateway_delayed.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:end_gateway", 3 | "config": { 4 | "exact": false 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/badlands_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 1.0 7 | ], 8 | "firstOctave": -2 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/iceberg_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 1.0, 6 | 1.0 7 | ], 8 | "firstOctave": -6 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/surface_secondary.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 0.0, 6 | 1.0 7 | ], 8 | "firstOctave": -6 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/diagonal_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:diagonal_right", 3 | "translation_key": "block.minecraft.banner.diagonal_right" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/half_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:half_horizontal", 3 | "translation_key": "block.minecraft.banner.half_horizontal" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/square_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:square_top_left", 3 | "translation_key": "block.minecraft.banner.square_top_left" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/straight_cross.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:straight_cross", 3 | "translation_key": "block.minecraft.banner.straight_cross" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_downleft.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_downleft", 3 | "translation_key": "block.minecraft.banner.stripe_downleft" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/triangle_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:triangle_bottom", 3 | "translation_key": "block.minecraft.banner.triangle_bottom" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/indirect_magic.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "indirectMagic", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/lightning_bolt.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "lightningBolt", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/outside_border.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "outsideBorder", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:swamp_hut" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/enchantment_provider/raid/vindicator_post_wave_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:sharpness", 4 | "level": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/incorrect_for_stone_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:needs_diamond_tool", 4 | "#minecraft:needs_iron_tool" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/portals.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:nether_portal", 4 | "minecraft:end_portal", 5 | "minecraft:end_gateway" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/rabbit_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:carrot", 4 | "minecraft:golden_carrot", 5 | "minecraft:dandelion" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_swamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:swamp", 4 | "minecraft:mangrove_swamp" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/required_ocean_monument_surrounding.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_ocean", 4 | "#minecraft:is_river" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/play/statistics/StatisticsKey.java: -------------------------------------------------------------------------------- 1 | package greenscripter.minecraft.play.statistics; 2 | 3 | public record StatisticsKey(StatisticsCategory category, int statistic) { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/diagonal_up_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:diagonal_up_left", 3 | "translation_key": "block.minecraft.banner.diagonal_up_left" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/square_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:square_top_right", 3 | "translation_key": "block.minecraft.banner.square_top_right" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/stripe_downright.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:stripe_downright", 3 | "translation_key": "block.minecraft.banner.stripe_downright" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/triangles_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:triangles_bottom", 3 | "translation_key": "block.minecraft.banner.triangles_bottom" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/falling_stalactite.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "fallingStalactite", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:village_desert" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:village_plains" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:village_snowy" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:village_taiga" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/enchantment_provider/raid/pillager_post_wave_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:quick_charge", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/enchantment_provider/raid/pillager_post_wave_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:quick_charge", 4 | "level": 2 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/base_stone_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:netherrack", 4 | "minecraft:basalt", 5 | "minecraft:blackstone" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/convertable_to_mud.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:dirt", 4 | "minecraft:coarse_dirt", 5 | "minecraft:rooted_dirt" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/dead_bush_may_place_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:sand", 4 | "#minecraft:terracotta", 5 | "#minecraft:dirt" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:logs_that_burn", 4 | "#minecraft:crimson_stems", 5 | "#minecraft:warped_stems" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:logs_that_burn", 4 | "#minecraft:crimson_stems", 5 | "#minecraft:warped_stems" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/seagrass_slightly_less_short.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:seagrass", 3 | "config": { 4 | "probability": 0.4 5 | } 6 | } -------------------------------------------------------------------------------- /src/greenscripter/statemachine/StateTickCallback.java: -------------------------------------------------------------------------------- 1 | package greenscripter.statemachine; 2 | 3 | public interface StateTickCallback { 4 | 5 | public void tick(StateEvent e) throws ThrownReturn; 6 | } 7 | -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/diagonal_up_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:diagonal_up_right", 3 | "translation_key": "block.minecraft.banner.diagonal_up_right" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/square_bottom_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:square_bottom_left", 3 | "translation_key": "block.minecraft.banner.square_bottom_left" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "drowning", 3 | "exhaustion": 0.0, 4 | "message_id": "drown", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "burning", 3 | "exhaustion": 0.1, 4 | "message_id": "lava", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "thorns", 3 | "exhaustion": 0.1, 4 | "message_id": "thorns", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:jungle_pyramid" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:village_savanna" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/gold_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:gold_ore", 4 | "minecraft:nether_gold_ore", 5 | "minecraft:deepslate_gold_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/snow_layer_can_survive_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:honey_block", 4 | "minecraft:soul_sand", 5 | "minecraft:mud" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/snow_layer_cannot_survive_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ice", 4 | "minecraft:packed_ice", 5 | "minecraft:barrier" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/underwater_bonemeals.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:seagrass", 4 | "#minecraft:corals", 5 | "#minecraft:wall_corals" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/completes_find_tree_tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:logs", 4 | "#minecraft:leaves", 5 | "#minecraft:wart_blocks" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/gold_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:gold_ore", 4 | "minecraft:nether_gold_ore", 5 | "minecraft:deepslate_gold_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/piglin_repellents.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_torch", 4 | "minecraft:soul_lantern", 5 | "minecraft:soul_campfire" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/is_jungle.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bamboo_jungle", 4 | "minecraft:jungle", 5 | "minecraft:sparse_jungle" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/erosion.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 0.0, 6 | 1.0, 7 | 1.0 8 | ], 9 | "firstOctave": -9 10 | } -------------------------------------------------------------------------------- /src/greenscripter/remoteindicators/Shape.java: -------------------------------------------------------------------------------- 1 | package greenscripter.remoteindicators; 2 | 3 | public class Shape { 4 | 5 | public String dimension; 6 | 7 | public void render() { 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/greenscripter/statemachine/StateTickPredicate.java: -------------------------------------------------------------------------------- 1 | package greenscripter.statemachine; 2 | 3 | public interface StateTickPredicate { 4 | 5 | public boolean tick(StateEvent e) throws ThrownReturn; 6 | } 7 | -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/half_vertical_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:half_vertical_right", 3 | "translation_key": "block.minecraft.banner.half_vertical_right" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/square_bottom_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:square_bottom_right", 3 | "translation_key": "block.minecraft.banner.square_bottom_right" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/campfire.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "burning", 3 | "exhaustion": 0.1, 4 | "message_id": "inFire", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "burning", 3 | "exhaustion": 0.1, 4 | "message_id": "fireball", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "freezing", 3 | "exhaustion": 0.0, 4 | "message_id": "freeze", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "burning", 3 | "exhaustion": 0.1, 4 | "message_id": "hotFloor", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "burning", 3 | "exhaustion": 0.1, 4 | "message_id": "inFire", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "burning", 3 | "exhaustion": 0.0, 4 | "message_id": "onFire", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/completes_find_tree_tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:logs", 4 | "#minecraft:leaves", 5 | "#minecraft:wart_blocks" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/fall_damage_resetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:climbable", 4 | "minecraft:sweet_berry_bush", 5 | "minecraft:cobweb" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/moss_replaceable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:base_stone_overworld", 4 | "#minecraft:cave_vines", 5 | "#minecraft:dirt" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/stone_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:stone_pressure_plate", 4 | "minecraft:polished_blackstone_pressure_plate" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/avoids_guardian_thorns.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:magic", 4 | "minecraft:thorns", 5 | "#minecraft:is_explosion" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:strider", 4 | "minecraft:blaze", 5 | "minecraft:magma_cube" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/point_of_interest_type/village.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:acquirable_job_site", 4 | "minecraft:home", 5 | "minecraft:meeting" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/polar_bears_spawn_on_alternate_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:frozen_ocean", 4 | "minecraft:deep_frozen_ocean" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/erosion_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 0.0, 6 | 1.0, 7 | 1.0 8 | ], 9 | "firstOctave": -11 10 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/end_spike.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:end_spike", 3 | "placement": [ 4 | { 5 | "type": "minecraft:biome" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/big_dripleaf_placeable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:small_dripleaf_placeable", 4 | "#minecraft:dirt", 5 | "minecraft:farmland" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ice", 4 | "minecraft:packed_ice", 5 | "minecraft:blue_ice", 6 | "minecraft:frosted_ice" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/axolotl_always_hostiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:drowned", 4 | "minecraft:guardian", 5 | "minecraft:elder_guardian" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/stone_crafting_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cobblestone", 4 | "minecraft:blackstone", 5 | "minecraft:cobbled_deepslate" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/stone_tool_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cobblestone", 4 | "minecraft:blackstone", 5 | "minecraft:cobbled_deepslate" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/is_badlands.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:badlands", 4 | "minecraft:eroded_badlands", 5 | "minecraft:wooded_badlands" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/is_savanna.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:savanna", 4 | "minecraft:savanna_plateau", 5 | "minecraft:windswept_savanna" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/end_spike.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:end_spike", 3 | "config": { 4 | "crystal_invulnerable": false, 5 | "spikes": [] 6 | } 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/ridge.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 2.0, 5 | 1.0, 6 | 0.0, 7 | 0.0, 8 | 0.0 9 | ], 10 | "firstOctave": -7 11 | } -------------------------------------------------------------------------------- /src/greenscripter/statemachine/StateChangeCallback.java: -------------------------------------------------------------------------------- 1 | package greenscripter.statemachine; 2 | 3 | public interface StateChangeCallback { 4 | 5 | public void execute(StateChangeEvent e) throws ThrownReturn; 6 | } 7 | -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/banner_pattern/half_horizontal_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "asset_id": "minecraft:half_horizontal_bottom", 3 | "translation_key": "block.minecraft.banner.half_horizontal_bottom" 4 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- 1 | { 2 | "death_message_type": "fall_variants", 3 | "exhaustion": 0.0, 4 | "message_id": "fall", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/unattributed_fireball.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "burning", 3 | "exhaustion": 0.1, 4 | "message_id": "onFire", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:features_cannot_replace", 4 | "#minecraft:leaves", 5 | "#minecraft:logs" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/damages_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:falling_anvil", 4 | "minecraft:falling_block", 5 | "minecraft:falling_stalactite" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/redirectable_projectile.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fireball", 4 | "minecraft:wind_charge", 5 | "minecraft:breeze_wind_charge" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/undead.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:skeletons", 4 | "#minecraft:zombies", 5 | "minecraft:wither", 6 | "minecraft:phantom" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/horse_tempt_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:golden_carrot", 4 | "minecraft:golden_apple", 5 | "minecraft:enchanted_golden_apple" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/igloo.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:snowy_taiga", 4 | "minecraft:snowy_plains", 5 | "minecraft:snowy_slopes" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/vegetation.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 0.0, 6 | 0.0, 7 | 0.0, 8 | 0.0 9 | ], 10 | "firstOctave": -8 11 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/processor_list/outpost_rot.json: -------------------------------------------------------------------------------- 1 | { 2 | "processors": [ 3 | { 4 | "integrity": 0.05, 5 | "processor_type": "minecraft:block_rot" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/sweet_berry_bush.json: -------------------------------------------------------------------------------- 1 | { 2 | "effects": "poking", 3 | "exhaustion": 0.1, 4 | "message_id": "sweetBerryBush", 5 | "scaling": "when_caused_by_living_non_player" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/parrots_spawnable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:grass_block", 4 | "minecraft:air", 5 | "#minecraft:leaves", 6 | "#minecraft:logs" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/rabbits_spawnable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:grass_block", 4 | "minecraft:snow", 5 | "minecraft:snow_block", 6 | "minecraft:sand" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/rails.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:rail", 4 | "minecraft:powered_rail", 5 | "minecraft:detector_rail", 6 | "minecraft:activator_rail" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sand", 4 | "minecraft:red_sand", 5 | "minecraft:suspicious_sand", 6 | "minecraft:suspicious_sand" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/stone_ore_replaceables.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:stone", 4 | "minecraft:granite", 5 | "minecraft:diorite", 6 | "minecraft:andesite" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/bypasses_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:bypasses_armor", 4 | "minecraft:falling_anvil", 5 | "minecraft:falling_stalactite" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/illager.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:evoker", 4 | "minecraft:illusioner", 5 | "minecraft:pillager", 6 | "minecraft:vindicator" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/mining_loot.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:axes", 4 | "#minecraft:pickaxes", 5 | "#minecraft:shovels", 6 | "#minecraft:hoes" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/rails.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:rail", 4 | "minecraft:powered_rail", 5 | "minecraft:detector_rail", 6 | "minecraft:activator_rail" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sand", 4 | "minecraft:red_sand", 5 | "minecraft:suspicious_sand", 6 | "minecraft:suspicious_sand" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/is_hill.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:windswept_hills", 4 | "minecraft:windswept_forest", 5 | "minecraft:windswept_gravelly_hills" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/iceberg_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:iceberg", 3 | "config": { 4 | "state": { 5 | "Name": "minecraft:blue_ice" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/iceberg_packed.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:iceberg", 3 | "config": { 4 | "state": { 5 | "Name": "minecraft:packed_ice" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/density_function/y.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:y_clamped_gradient", 3 | "from_value": -4064.0, 4 | "from_y": -4064, 5 | "to_value": 4062.0, 6 | "to_y": 4062 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/temperature.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.5, 4 | 0.0, 5 | 1.0, 6 | 0.0, 7 | 0.0, 8 | 0.0 9 | ], 10 | "firstOctave": -10 11 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/freeze_top_layer.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:freeze_top_layer", 3 | "placement": [ 4 | { 5 | "type": "minecraft:biome" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/structure/igloo.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:igloo", 3 | "biomes": "#minecraft:has_structure/igloo", 4 | "spawn_overrides": {}, 5 | "step": "surface_structures" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/damage_type/bad_respawn_point.json: -------------------------------------------------------------------------------- 1 | { 2 | "death_message_type": "intentional_game_design", 3 | "exhaustion": 0.1, 4 | "message_id": "badRespawnPoint", 5 | "scaling": "always" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/incorrect_for_gold_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:needs_diamond_tool", 4 | "#minecraft:needs_iron_tool", 5 | "#minecraft:needs_stone_tool" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/lush_ground_replaceable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:moss_replaceable", 4 | "minecraft:clay", 5 | "minecraft:gravel", 6 | "minecraft:sand" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/temperature_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.5, 4 | 0.0, 5 | 1.0, 6 | 0.0, 7 | 0.0, 8 | 0.0 9 | ], 10 | "firstOctave": -12 11 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/vegetation_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 1.0, 5 | 0.0, 6 | 0.0, 7 | 0.0, 8 | 0.0 9 | ], 10 | "firstOctave": -10 11 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/placed_feature/void_start_platform.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "minecraft:void_start_platform", 3 | "placement": [ 4 | { 5 | "type": "minecraft:biome" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/desert_armorer_boots_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:thorns", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/swamp_armorer_boots_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:mending", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/incorrect_for_wooden_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:needs_diamond_tool", 4 | "#minecraft:needs_iron_tool", 5 | "#minecraft:needs_stone_tool" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/oak_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:oak_log", 4 | "minecraft:oak_wood", 5 | "minecraft:stripped_oak_log", 6 | "minecraft:stripped_oak_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/witch_resistant_to.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:magic", 4 | "minecraft:indirect_magic", 5 | "minecraft:sonic_boom", 6 | "minecraft:thorns" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:rabbit", 4 | "minecraft:endermite", 5 | "minecraft:silverfish", 6 | "minecraft:fox" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/oak_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:oak_log", 4 | "minecraft:oak_wood", 5 | "minecraft:stripped_oak_log", 6 | "minecraft:stripped_oak_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/trimmable_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:foot_armor", 4 | "#minecraft:leg_armor", 5 | "#minecraft:chest_armor", 6 | "#minecraft:head_armor" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_warm.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lukewarm_ocean", 4 | "minecraft:warm_ocean", 5 | "minecraft:deep_lukewarm_ocean" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/forest_rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:forest_rock", 3 | "config": { 4 | "state": { 5 | "Name": "minecraft:mossy_cobblestone" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/noise/patch.json: -------------------------------------------------------------------------------- 1 | { 2 | "amplitudes": [ 3 | 1.0, 4 | 0.0, 5 | 0.0, 6 | 0.0, 7 | 0.0, 8 | 0.013333333333333334 9 | ], 10 | "firstOctave": -5 11 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/structure/end_city.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:end_city", 3 | "biomes": "#minecraft:has_structure/end_city", 4 | "spawn_overrides": {}, 5 | "step": "surface_structures" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/desert_armorer_chestplate_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:thorns", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/desert_armorer_chestplate_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:thorns", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/desert_armorer_helmet_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:thorns", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/desert_armorer_leggings_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:thorns", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/desert_armorer_leggings_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:thorns", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/jungle_armorer_boots_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:unbreaking", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/jungle_armorer_helmet_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:unbreaking", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/plains_armorer_boots_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/plains_armorer_boots_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/plains_armorer_helmet_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/snow_armorer_boots_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:frost_walker", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/snow_armorer_boots_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:frost_walker", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/swamp_armorer_chestplate_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:mending", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/swamp_armorer_helmet_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:mending", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/swamp_armorer_helmet_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:respiration", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/swamp_armorer_leggings_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:mending", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/bee_growables.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:crops", 4 | "minecraft:sweet_berry_bush", 5 | "minecraft:cave_vines", 6 | "minecraft:cave_vines_plant" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/cauldrons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cauldron", 4 | "minecraft:water_cauldron", 5 | "minecraft:lava_cauldron", 6 | "minecraft:powder_snow_cauldron" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/mushroom_grow_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mycelium", 4 | "minecraft:podzol", 5 | "minecraft:crimson_nylium", 6 | "minecraft:warped_nylium" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/entity_type/freeze_immune_entity_types.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:stray", 4 | "minecraft:polar_bear", 5 | "minecraft:snow_golem", 6 | "minecraft:wither" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/jungle_armorer_boots_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:feather_falling", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/jungle_armorer_chestplate_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:unbreaking", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/jungle_armorer_leggings_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:unbreaking", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/plains_armorer_chestplate_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/plains_armorer_leggings_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/plains_armorer_leggings_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/savanna_armorer_boots_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:binding_curse", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/savanna_armorer_helmet_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:binding_curse", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/savanna_armorer_helmet_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:binding_curse", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/snow_armorer_helmet_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:aqua_affinity", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/snow_armorer_helmet_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:aqua_affinity", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/swamp_armorer_boots_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:depth_strider", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/birch_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:birch_log", 4 | "minecraft:birch_wood", 5 | "minecraft:stripped_birch_log", 6 | "minecraft:stripped_birch_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/frogs_spawnable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:grass_block", 4 | "minecraft:mud", 5 | "minecraft:mangrove_roots", 6 | "minecraft:muddy_mangrove_roots" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/damage_type/is_explosion.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fireworks", 4 | "minecraft:explosion", 5 | "minecraft:player_explosion", 6 | "minecraft:bad_respawn_point" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/birch_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:birch_log", 4 | "minecraft:birch_wood", 5 | "minecraft:stripped_birch_log", 6 | "minecraft:stripped_birch_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/worldgen/biome/water_on_map_outlines.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_ocean", 4 | "#minecraft:is_river", 5 | "minecraft:swamp", 6 | "minecraft:mangrove_swamp" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/twisting_vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:twisting_vines", 3 | "config": { 4 | "max_height": 8, 5 | "spread_height": 4, 6 | "spread_width": 8 7 | } 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/density_function/end/sloped_cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:add", 3 | "argument1": { 4 | "type": "minecraft:end_islands" 5 | }, 6 | "argument2": "minecraft:end/base_3d_noise" 7 | } -------------------------------------------------------------------------------- /src/greenscripter/statemachine/ThrownReturn.java: -------------------------------------------------------------------------------- 1 | package greenscripter.statemachine; 2 | 3 | public class ThrownReturn extends Throwable { 4 | 5 | public ThrownReturn(String string) { 6 | super(string, null, true, false); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/savanna_armorer_chestplate_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:binding_curse", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/savanna_armorer_chestplate_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:binding_curse", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/savanna_armorer_leggings_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:binding_curse", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/taiga_armorer_chestplate_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:blast_protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/taiga_armorer_leggings_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:blast_protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_common.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fire_protection", 4 | "minecraft:thorns", 5 | "minecraft:infinity" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_common.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:punch", 4 | "minecraft:smite", 5 | "minecraft:bane_of_arthropods" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/enchantment_provider/mob_spawn_equipment.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:by_cost_with_difficulty", 3 | "enchantments": "#minecraft:on_mob_spawn_equipment", 4 | "max_cost_span": 17, 5 | "min_cost": 5 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/acacia_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:acacia_log", 4 | "minecraft:acacia_wood", 5 | "minecraft:stripped_acacia_log", 6 | "minecraft:stripped_acacia_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/cherry_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cherry_log", 4 | "minecraft:cherry_wood", 5 | "minecraft:stripped_cherry_log", 6 | "minecraft:stripped_cherry_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/jungle_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:jungle_log", 4 | "minecraft:jungle_wood", 5 | "minecraft:stripped_jungle_log", 6 | "minecraft:stripped_jungle_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/spruce_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:spruce_log", 4 | "minecraft:spruce_wood", 5 | "minecraft:stripped_spruce_log", 6 | "minecraft:stripped_spruce_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/acacia_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:acacia_log", 4 | "minecraft:acacia_wood", 5 | "minecraft:stripped_acacia_log", 6 | "minecraft:stripped_acacia_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/cherry_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cherry_log", 4 | "minecraft:cherry_wood", 5 | "minecraft:stripped_cherry_log", 6 | "minecraft:stripped_cherry_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/mining.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:axes", 4 | "#minecraft:pickaxes", 5 | "#minecraft:shovels", 6 | "#minecraft:hoes", 7 | "minecraft:shears" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/enchantable/vanishing.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:enchantable/durability", 4 | "minecraft:compass", 5 | "minecraft:carved_pumpkin", 6 | "#minecraft:skulls" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/jungle_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:jungle_log", 4 | "minecraft:jungle_wood", 5 | "minecraft:stripped_jungle_log", 6 | "minecraft:stripped_jungle_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/spruce_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:spruce_log", 4 | "minecraft:spruce_wood", 5 | "minecraft:stripped_spruce_log", 6 | "minecraft:stripped_spruce_wood" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/item/tall_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:sunflower", 4 | "minecraft:lilac", 5 | "minecraft:peony", 6 | "minecraft:rose_bush", 7 | "minecraft:pitcher_plant" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/configured_feature/twisting_vines_bonemeal.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:twisting_vines", 3 | "config": { 4 | "max_height": 2, 5 | "spread_height": 1, 6 | "spread_width": 3 7 | } 8 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/structure/desert_pyramid.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:desert_pyramid", 3 | "biomes": "#minecraft:has_structure/desert_pyramid", 4 | "spawn_overrides": {}, 5 | "step": "surface_structures" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/structure/jungle_pyramid.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:jungle_temple", 3 | "biomes": "#minecraft:has_structure/jungle_temple", 4 | "spawn_overrides": {}, 5 | "step": "surface_structures" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/worldgen/structure/mansion.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:woodland_mansion", 3 | "biomes": "#minecraft:has_structure/woodland_mansion", 4 | "spawn_overrides": {}, 5 | "step": "surface_structures" 6 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/enchantment_provider/trades/jungle_armorer_helmet_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:single", 3 | "enchantment": "minecraft:projectile_protection", 4 | "level": 1 5 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_common.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:aqua_affinity", 4 | "minecraft:looting", 5 | "minecraft:frost_walker" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_common.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:blast_protection", 4 | "minecraft:fire_aspect", 5 | "minecraft:flame" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/azalea_grows_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:dirt", 4 | "#minecraft:sand", 5 | "#minecraft:terracotta", 6 | "minecraft:snow_block", 7 | "minecraft:powder_snow" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/greenscripter/minecraft/resources/data/minecraft/tags/block/hoglin_repellents.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:warped_fungus", 4 | "minecraft:potted_warped_fungus", 5 | "minecraft:nether_portal", 6 | "minecraft:respawn_anchor" 7 | ] 8 | } --------------------------------------------------------------------------------