Minecraft Data Packs / Cosmetic

Letter Banners (latest snapshot)

    • 1,484 views, 5 today
    • 144 downloads, 0 today
    • 30
    • 21
    • 5
    Required Resource Pack
    Eroxen's Avatar Eroxen
    Level 52 : Grandmaster Crafter
    108
    In the latest snapshot (24w10a) you can now add data-driven banner patterns! As a proof of concept, I made this pack that adds banner patterns for each letter in the Roman alphabet and each Arabic numeral.
    CompatibilityMinecraft 1.20
    Tags

    Create an account or sign in to comment.

    Silabear
    03/08/2024 5:26 pm
    Level 68 : High Grandmaster Bear
    Silabear's Avatar
    bannër
    1
    Z Hoeshin
    03/08/2024 10:07 am
    Level 1 : New Miner
    Z Hoeshin's Avatar
    Great thing except for the lack of names of the patterns. You can add en_US.json to the resourcepack in assets/minecraft/lang
    Then you just write it all down in the en_US.json as {
    "block.letter_banners.banner.<CHARACTER>.<COLOR>": "<NAME>",
    "block.letter_banners.banner.<CHARACTER>.<COLOR>": "<NAME>",
    ...
    "block.letter_banners.banner.<CHARACTER>.<COLOR>": "<NAME>"
    }

    Here's a python script I had to make to get the names working (will output everything in the command line, you only have to copy it into the file):
    colors = ["White", "Light Gray", "Gray", "Black", "Brown", "Red", "Orange", "Yellow", "Lime", "Green", "Cyan", "Light Blue", "Blue", "Purple", "Magenta", "Pink"]
    chars = list("abcdefghijklmnopqrstuvwxyz0123456789")
    print("{")
    for color in colors:
    for char in chars:
    print(f'\t"block.letter_banners.banner.{char}.{color.replace(" ", "_").lower()}": "{color} {"Digit" if char in "0123456789" else "Letter"} {char.upper()}"')
    print("}")
    2
    Eroxen
    03/08/2024 12:12 pm
    Level 52 : Grandmaster Crafter
    Eroxen's Avatar
    Yeal lol I thought about adding that, but I skipped it because I wanted to get this out as fast as possible. Will definitely add it for the next update (and shields, because I skipped those too ;p)
    1
    Hoponopono
    03/06/2024 7:05 pm
    Level 65 : High Grandmaster Technomancer
    Hoponopono's Avatar
    So pretty! Glad that they are data-driven now
    5
    Eroxen
    03/07/2024 2:12 pm
    Level 52 : Grandmaster Crafter
    Eroxen's Avatar
    IKR! Mojang have been on a roll with the new technical features lately :D
    2
    Planet Minecraft

    Website

    © 2010 - 2024
    www.planetminecraft.com

    Welcome