Skip to content

Commit

Permalink
画象
Browse files Browse the repository at this point in the history
  • Loading branch information
MustardOasis committed Oct 2, 2024
1 parent 27507f3 commit aa2253f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,12 @@ protected void addTranslations() {
add("painting.confluence.slime_dragon.author", "BiliBili_小史龙吖Slime_Dragon");
add("painting.confluence.khaki_coffee_beans.title", "KHAKI_COFFEE_BEANS");
add("painting.confluence.khaki_coffee_beans.author", "BiliBili_卡其色咖啡豆");
add("painting.confluence.uqtqu_day.title", "UQTQU_DAY");
add("painting.confluence.uqtqu_day.author", "BiliBili__昼泽_");
add("painting.confluence.emerald_shenyi.title", "EMERALD_SHENYI");
add("painting.confluence.emerald_shenyi.author", "BiliBili_Emerald_审翼");
add("painting.confluence.black_cat.title", "BLACK_CAT");
add("painting.confluence.black_cat.author", "???");

// new
add("achievements.toast.complete", "成就达成!");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,12 @@ protected void addTranslations() {
add("painting.confluence.slime_dragon.author", "BiliBili_小史龙吖Slime_Dragon");
add("painting.confluence.khaki_coffee_beans.title", "KHAKI_COFFEE_BEANS");
add("painting.confluence.khaki_coffee_beans.author", "BiliBili_卡其色咖啡豆");
add("painting.confluence.uqtqu_day.title", "UQTQU_DAY");
add("painting.confluence.uqtqu_day.author", "BiliBili__昼泽_");
add("painting.confluence.emerald_shenyi.title", "EMERALD_SHENYI");
add("painting.confluence.emerald_shenyi.author", "BiliBili_Emerald_审翼");
add("painting.confluence.black_cat.title", "BLACK_CAT");
add("painting.confluence.black_cat.author", "???");

// new
add("achievements.toast.complete", "Achievement achieved!");
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/org/confluence/mod/misc/ModPaintings.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public final class ModPaintings {
public static final RegistryObject<PaintingVariant> OLD_SHEEP = PAINTING_VARIANTS.register("old_sheep", () -> new PaintingVariant(32, 32));
public static final RegistryObject<PaintingVariant> SLIME_DRAGON = PAINTING_VARIANTS.register("slime_dragon", () -> new PaintingVariant(32, 32));
public static final RegistryObject<PaintingVariant> KHAKI_COFFEE_BEANS = PAINTING_VARIANTS.register("khaki_coffee_beans", () -> new PaintingVariant(32, 32));
public static final RegistryObject<PaintingVariant> UQTQU_DAY = PAINTING_VARIANTS.register("uqtqu_day", () -> new PaintingVariant(32, 32));
public static final RegistryObject<PaintingVariant> EMERALD_SHENYI = PAINTING_VARIANTS.register("emerald_shenyi", () -> new PaintingVariant(32, 32));
public static final RegistryObject<PaintingVariant> BLACK_CAT = PAINTING_VARIANTS.register("black_cat", () -> new PaintingVariant(32, 32));

public static void register(IEventBus bus) {
PAINTING_VARIANTS.register(bus);
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"confluence:sihuai_2412",
"confluence:old_sheep",
"confluence:slime_dragon",
"confluence:khaki_coffee_beans"
"confluence:khaki_coffee_beans",
"confluence:uqtqu_day",
"confluence:emerald_shenyi",
"confluence:black_cat"
]
}

0 comments on commit aa2253f

Please sign in to comment.