Skip to content

Commit 7bed923

Browse files
authored
Merge pull request #1984 from VT-14/death-messages
Added Death Messages
2 parents 0efe7f2 + 38be749 commit 7bed923

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/generated/resources/assets/bloodmagic/lang/en_us.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@
111111
"bloodmagic.keybind.cycle_holding_neg": "Cycle Sigil (-)",
112112
"bloodmagic.keybind.cycle_holding_pos": "Cycle Sigil (+)",
113113
"bloodmagic.keybind.open_holding": "Open Sigil of Holding",
114-
"chat.bloodmagic.damageSource": "%s's soul became too weak",
115114
"chat.bloodmagic.diviner.blockedBuild": "Unable to replace block at %d, %d, %d.",
116115
"chat.bloodmagic.living_upgrade_level_increase": "%s has leveled up to %d!",
117116
"chat.bloodmagic.ritual.activate": "A rush of energy flows through the ritual!",
@@ -125,6 +124,8 @@
125124
"chat.bloodmagic.routing.same": "Invalid - cannot link a node with itself.",
126125
"chat.bloodmagic.routing.set": "Setting node location.",
127126
"curios.identifier.living_armour_socket": "Living Armour Socket",
127+
"death.attack.ritual": "%1$s died in a Well of Suffering",
128+
"death.attack.sacrifice": "%1$s sacrificed a bit too much LP",
128129
"effect.bloodmagic.bounce": "Bounce",
129130
"effect.bloodmagic.flight": "Flight",
130131
"effect.bloodmagic.gravity": "Gravity",

src/main/java/wayoftime/bloodmagic/common/data/GeneratorLanguage.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ protected void addTranslations()
2424
add("itemGroup.bloodmagic.creativeTab", "Blood Magic");
2525
add("itemGroup.bloodmagic.upgradeTab", "Blood Magic Living Upgrades");
2626

27-
add("chat.bloodmagic.damageSource", "%s's soul became too weak");
27+
// Death Messages
28+
//add("chat.bloodmagic.damageSource", "%s's soul became too weak");
29+
add("death.attack.sacrifice", "%1$s sacrificed a bit too much LP");
30+
add("death.attack.ritual", "%1$s died in a Well of Suffering");
2831

2932
// Tile Entitites
3033
add("tile.bloodmagic.soulforge.name", "Hellfire Forge");

0 commit comments

Comments
 (0)