Skip to content

Commit

Permalink
Added death gauntlet
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouca committed Sep 3, 2024
1 parent 8c80291 commit b0638e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Binary file added resources/gauntlets/death_gauntlet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/Styles/GauntletStyle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -696,6 +696,12 @@ class $modify(CustomGauntletSelectLayer, GauntletSelectLayer) {
sprite->setScale(1.270f);
sprite->setZOrder(0);
node->addChild(sprite);
} else if (gauntletName == "Death") {
CCSprite* sprite = CCSprite::createWithSpriteFrameName("death_gauntlet.png"_spr);
sprite->setPosition(bg->getPosition());
sprite->setScale(1.270f);
sprite->setZOrder(0);
node->addChild(sprite);
} else if (gauntletName == "NCS I") {
CCSprite* sprite = CCSprite::createWithSpriteFrameName("ncs_gauntlet_1.png"_spr);
sprite->setPosition(bg->getPosition());
Expand Down

0 comments on commit b0638e0

Please sign in to comment.