Compatibility
Minecraft: Java Edition
1.21–1.21.1
Platforms
Supported environments
Client and server
Tags
Creators
Details
Licensed LGPL-3.0-only
Published 4 days ago
About
Mod Codenamed Stickers is a Minecraft 1.21.1 mod that adds Stickers and Sticker Accessories
Features
- Sticker Packs! Crafted with Paper, Slime Balls and more
- Stickers! Can be placed on any surface big enough for them to fit
- Fully Data Driven! Add your own Sticker Variants and Sticker Collections with Resource Packs and Data Packs
Usage
To add new Stickers or Sticker Packs, use these examples:
Sticker Variant
data/namespace/stickers/sticker_variant/collection/example_sticker.json
{
"width": 8, // optional, defaults to 8
"height": 8, // optional, defaults to 8
"author": "you", // optional
"path": "namespace:collection/example_sticker" // optional
}
assets/namespace/textures/sticker/collection/example_sticker.png
Sticker Collection
data/namespace/stickers/sticker_collection/example_collection.json
{
"loot_table_path": "namespace:sticker_packs/example_collection"
}
data/namespace/loot_table/sticker_packs/example_collection.json
{
"type": "minecraft:generic",
"pools": [
{
"rolls": 8,
"entries": [
{
"type": "minecraft:item",
"name": "stickers:sticker",
"functions": [
{
"function": "stickers:set_sticker_variant",
"tag": "namespace:collection/example_collection"
},
{
"function": "minecraft:set_components",
"components": {
"stickers:foil": true
},
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.015
}
]
}
]
}
]
}
],
"random_sequence": "namespace:sticker_packs/example_collection"
}
data/namespace/tags/stickers/sticker_variant/collection/example_collection.json
{
"values": [
"namespace:collection/example_sticker"
]
}


