Skip to content

Commit

Permalink
Fix shield textures
Browse files Browse the repository at this point in the history
  • Loading branch information
UnRealDinnerbone committed Oct 14, 2024
1 parent 9077b24 commit 70987ff
Show file tree
Hide file tree
Showing 10 changed files with 48 additions and 0 deletions.
Binary file modified assets/lt/textures/entity/banner/pog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lt/textures/entity/shield/cents.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lt/textures/entity/shield/col.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lt/textures/entity/shield/love_heart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lt/textures/entity/shield/love_heart_new.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lt/textures/entity/shield/no_cents.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/lt/textures/entity/shield/pog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions data/lt/item_modifier/banner_pattern.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[
{
"function": "minecraft:set_banner_pattern",
"patterns": [
{
"pattern": "lt:cents",
"color": "green"
}
],
"append": false,
"conditions": [
{
"condition": "minecraft:reference",
"name": "lt:team_cents"
}
]
},
{
"function": "minecraft:set_banner_pattern",
"patterns": [
{
"pattern": "lt:no_cents",
"color": "red"
}
],
"append": false,
"conditions": [
{
"condition": "minecraft:reference",
"name": "lt:team_no_cents"
}
]
}
]
7 changes: 7 additions & 0 deletions data/lt/predicate/team_cents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"nbt": "{Tags:[\"team.cents\"]}"
}
}
7 changes: 7 additions & 0 deletions data/lt/predicate/team_no_cents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"nbt": "{Tags:[\"team.no_cents\"]}"
}
}

0 comments on commit 70987ff

Please sign in to comment.