├── .gitattributes ├── biome_definitions.json ├── block_attributes.json ├── block_palette.nbt ├── creative_contents.dat ├── creative_items.json ├── entity_identifiers.dat ├── entity_properties.nbt ├── item_components.nbt ├── item_mappings.json ├── legacy_block_ids.json ├── legacy_item_ids.json ├── recipes.json ├── runtime_item_states.json └── stripped_biome_definitions.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/.gitattributes -------------------------------------------------------------------------------- /biome_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/biome_definitions.json -------------------------------------------------------------------------------- /block_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/block_attributes.json -------------------------------------------------------------------------------- /block_palette.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/block_palette.nbt -------------------------------------------------------------------------------- /creative_contents.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/creative_contents.dat -------------------------------------------------------------------------------- /creative_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/creative_items.json -------------------------------------------------------------------------------- /entity_identifiers.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/entity_identifiers.dat -------------------------------------------------------------------------------- /entity_properties.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/entity_properties.nbt -------------------------------------------------------------------------------- /item_components.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/item_components.nbt -------------------------------------------------------------------------------- /item_mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/item_mappings.json -------------------------------------------------------------------------------- /legacy_block_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/legacy_block_ids.json -------------------------------------------------------------------------------- /legacy_item_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/legacy_item_ids.json -------------------------------------------------------------------------------- /recipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/recipes.json -------------------------------------------------------------------------------- /runtime_item_states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/runtime_item_states.json -------------------------------------------------------------------------------- /stripped_biome_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CloudburstMC/Data/HEAD/stripped_biome_definitions.json --------------------------------------------------------------------------------