Skip to content

Commit d07c7e9

Browse files
Merge pull request #484 from TheRealNova422-real/patch-29
Eye Of Hagane
2 parents cd399c6 + 21ab6bf commit d07c7e9

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

items/misc_joker.lua

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7811,6 +7811,37 @@ local cat_owl = { -- Lucky Cards are considered Echo Cards and vice versa
78117811
},
78127812
},
78137813
}
7814+
local eyeofhagane = {
7815+
object_type = "Joker",
7816+
dependencies = {
7817+
items = {
7818+
"set_cry_misc_joker",
7819+
},
7820+
},
7821+
name = "cry-eyeofhagane",
7822+
key = "eyeofhagane",
7823+
order = 136,
7824+
pos = { x = 4, y = 1 },
7825+
rarity = 2,
7826+
cost = 6,
7827+
blueprint_compat = false,
7828+
immutable = true,
7829+
atlas = "placeholders", -- https://discord.com/channels/1264429948970733782/1274103559113150629/1351479917367263312
7830+
calculate = function(self, card, context)
7831+
if context.before then
7832+
for i = 1, #context.full_hand do
7833+
if context.full_hand[i]:is_face() then
7834+
context.full_hand[i]:set_ability(G.P_CENTERS["m_steel"], nil, true)
7835+
end
7836+
end
7837+
end
7838+
end,
7839+
cry_credits = {
7840+
idea = { "Soren", },
7841+
code = { "Nova", },
7842+
art = { "Soren", },
7843+
},
7844+
}
78147845
local miscitems = {
78157846
jimball_sprite,
78167847
dropshot,
@@ -7925,6 +7956,7 @@ local miscitems = {
79257956
lebaron_james,
79267957
huntingseason,
79277958
cat_owl,
7959+
eyeofhagane,
79287960
}
79297961
return {
79307962
name = "Misc. Jokers",

localization/en-us.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1464,6 +1464,12 @@ return {
14641464
"All {C:attention}face{} cards are debuffed",
14651465
},
14661466
},
1467+
j_cry_eyeofhagane = {
1468+
name = "Eye of Hagene",
1469+
text = {
1470+
"All played {C:attention}face{} cards become {C:attention}Steel{}"
1471+
},
1472+
},
14671473
j_cry_facile = {
14681474
name = "Facile",
14691475
text = {

0 commit comments

Comments
 (0)