Skip to content

Commit

Permalink
🤏 Few new icons for Emojis and tree gen
Browse files Browse the repository at this point in the history
  • Loading branch information
bth123 committed Dec 24, 2024
1 parent bf246de commit 51d05f0
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 15 deletions.
10 changes: 8 additions & 2 deletions utils/msg_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,17 @@ class Emojis:

atlases_open = "<:atlases:1142347325436612619>"
blockstates_open = "<:blockstates:1142346756953231451>"
equipment_open = "<:equipment:1319409526704832553>"
font_open = "<:font:1142346540392927262>"
models_open = "<:models:1142346673469800479>"
items_open = "<:items:1319409532858007563>"
lang_open = "<:lang:1142346828206047325>"
models_open = "<:models:1142346673469800479>"
particles_open = "<:particles:1142346351879925862>"
post_effects_open = "<:shaders:1142346604028899429>"
sounds_open = "<:sounds:1142347049568837742>"
shaders_open = "<:shaders:1142346604028899429>"
textures_open = "<:textures:1142347361893494876>"
texts_open = "<:texts:1142919111236665485>"
textures_open = "<:textures:1142347361893494876>"


advancements_json = "<:advancement:1319409155756527716>"
Expand All @@ -132,7 +135,10 @@ class Emojis:

atlas_json = "<:atlas:1188838144351682620>"
blockstates_json = "<:blockstate:1188838141663125624>"
equipment_json = "<:equipment_file:1319409197108170752>"
items_json = "<:items_file:1319409214614929478>"
particles_json = "<:particle:1188838146385911939>"
post_effects_json = "<:shader_triangle:1285663956496810048>"


beet = "<:beet:1143125070336774165>"
Expand Down
44 changes: 31 additions & 13 deletions utils/tree_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@ def generate_tree(folders: str):
"function": e.functions_open,
"jukebox_song": e.sounds_open,
"loot_table": e.loot_tables_open,
"instrument": e.instrument_open,
"item_modifier": e.item_modifiers_open,
"painting_variant": e.painting_variant_open,
"predicate": e.predicates_open,
"recipe": e.recipes_open,
"structure": e.structures_open,
"tags": e.tags_open,
"trial_spawner": e.trial_spawner_open,
"trim_material": e.trim_material_open,
"trim_pattern": e.trim_pattern_open,
"worldgen": e.worldgen_open,
Expand All @@ -120,17 +122,20 @@ def generate_tree(folders: str):
"assets": e.assets_open,
"atlases": e.atlases_open,
"blockstates": e.blockstates_open,
"equipment": e.equipment_open,
"font": e.font_open,
"items": e.items_open,
"lang": e.lang_open,
"models": e.models_open,
"particles": e.particles_open,
"post_effects": e.shaders_open,
"textures": e.textures_open,
"texts": e.texts_open,
"shaders": e.shaders_open,
"sounds": e.sounds_open
},
"jsons": {
"advancement": e.advancements_json,
"advancements": e.advancements_json,
"banner_pattern": e.banner_pattern_json,
"chat_type": e.chat_type_json,
"damage_type": e.damage_type_json,
Expand All @@ -139,28 +144,41 @@ def generate_tree(folders: str):
"enchantment": e.enchantment_json,
"enchantment_provider": e.enchantment_json,
"jukebox_song": e.ogg,
"instrument": e.instrument_json,
"item_modifier": e.item_modifiers_json,
"item_modifiers": e.item_modifiers_json,
"recipe": e.recipes_json,
"recipes": e.recipes_json,
"painting_variant": e.painting_variant_json,
"predicate": e.predicates_json,
"predicates": e.predicates_json,
"trial_spawner": e.trial_spawner_json,
"trim_pattern": e.trim_pattern_json,
"trim_material": e.trim_material_json,
"wolf_variant": e.wolf_variant_json,
"lang": e.lang,
"models": e.bbmodel,
"loot_table": e.loot_tables_json,

"advancements": e.advancements_json,
"item_modifiers": e.item_modifiers_json,
"loot_tables": e.loot_tables_json,
"predicates": e.predicates_json,
"recipes": e.recipes_json,

"atlases": e.atlases_open,
"blockstates": e.blockstates_json,
"equipment": e.equipment_json,
"items": e.items_json,
"lang": e.lang,
"models": e.bbmodel,
"particles": e.particles_json,
"loot_table": e.loot_tables_json,
"loot_tables": e.loot_tables_json
"post_effects": e.shader_triangle,
"shaders": e.shader_triangle,
}
}
registries = ["advancement", "banner_pattern", "chat_type", "damage_type", "dimension", "dimension_type",
"enchantment", "enchantment_provider", "jukebox_song", "painting_variant", "predicate",
"item_modifier", "recipe", "trim_material", "trim_pattern", "wolf_variant", "lang", "models",
"atlases", "blockstates", "particles", "loot_table","loot_tables",
"advancements", "predicates", "item_modifiers", "recipes"
registries = [
"advancement", "banner_pattern", "chat_type", "damage_type", "dimension", "dimension_type",
"enchantment", "enchantment_provider", "jukebox_song", "instrument", "painting_variant",
"predicate", "item_modifier", "recipe", "trial_spawner", "trim_material", "trim_pattern",
"wolf_variant", "loot_table",
"advancements", "predicates", "item_modifiers", "recipes", "loot_tables",

"atlases", "blockstates", "equipment", "items", "lang", "models", "particles", "post_effects",
"shaders",
]

0 comments on commit 51d05f0

Please sign in to comment.