• Dear forum reader,
    To actively participate in our forum discussions or to start your own threads, in addition to your game account you need a forum account. You can
    REGISTER HERE!
    Please ensure a translation in to English is provided if your post is not in English and to respect your fellow players when posting.

2022 Winter Event

MooingCat

Viceroy
Spoiler Poster
A couple of new info texts for the "WinterPiggyBankWindow".

Code:
"WIN22|Open the Elves Gift"
"WIN22|Click to open the Elves' Workshop"
"WIN22|Elves' Workshop"
"WIN22|All presents are ready to open"

Also, the "Wintershop_1" asset has been changed once again, this time a few of the last year's assets that were removed in the 2nd version has been re-added. So now it looks like the mechanics might be a bit similar to last years, but with a few changes?

79oTtaU.png

9cm2P49.png

Y30pKXI.png
 

MooingCat

Viceroy
Spoiler Poster
Some new info texts / functions have been added, sounds like when you get an item for the piggy bank (reindeer sleigh) you can either choose 1 of two options, or spend even more diamonds to choose both of them. I assume you still have to pay a lot of diamonds to actually claim the rewards. Can see no room for confusion here (assuming that's accurate), spending diamonds without getting anything immediately :p

Code:
'WIN22|Take Both'
'WIN22|Choose a present to fill your santa bag!'

Code:
h["de.innogames.strategycity.shared.ui.window.piggybank.WinterPiggyBankRerollSelectionWindow"] = W1a;
    W1a.__name__ = "de.innogames.strategycity.shared.ui.window.piggybank.WinterPiggyBankRerollSelectionWindow";
    W1a.__super__ = V;
    W1a.prototype = k(V.prototype, {
        ...

        _createContent: function() {
            this._closeButton.mouseEnabled = !1;
            this._closeButton.set_visible(!1);
            this.set_headline(p.gettext("WIN22|Choose a present to fill your santa bag!"));
            this._contentContainer = new x;
            this.addContent(this._contentContainer, 898, 624);
            this._createElf();
            this._createSelectionOptions();
            this._createSelectionButtons();
            this._createChooseAllButton();
            this._createUnlockedRewards()
        },

        ...

        _createChooseAllButton: function() {
            var a = this
              , b = mb.createScale9PremiumButton(164, 30);
            b.set_x(367);
            b.set_y(367);
            b.setText(p.gettext("WIN22|Take Both"), 16446953);
            b.set_cost(ba.string(this._piggyBankRerollViewModel.addAllCost.resources.h.premium));
            this._contentContainer.addChild(b);
            b.setClickCallback(function(c) {
                a._piggyBankRerollViewModel.pickAll();
                a.dispose()
            })
        },
 
        ...
    });

Some new "popover" assets as well:

winter_popover_title_bg.png
winter_popover_title_bg

winter_popover_paper_bg.png
winter_popover_paper_bg

Edit 17.10:

Even more texts added, though nothing special:

Code:
"WIN22|There are no Elves' Gifts to claim"
"WIN19|Click to open the Elves' Workshop"
'WIN22|Not enough boxes left to add both present'
'WIN22|Add Both'

Edit 18.10:

2 more texts:

Code:
'WIN22|Add one or both gifts first'
'WIN22|Shuffle for an equal chance for one of these rewards'
 
Last edited:

MooingCat

Viceroy
Spoiler Poster
Some new info texts:

Code:
'WIN22|Find Elves Gifts by opening Mystery Presents!'
'WIN22|%d Elves Gift is ready to open!',
'WIN22|All Elves Gifts are ready to open!'
'WIN22|%d Elves Gifts are ready to open!',
'WIN22|This reward pool has been depleted!'

The "reward pool has been depleted" is interesting. Another new asset has been added called "popover reward pool background".

winter_popover_reward_pool_background.png

Related to the food? Can't say I had heard of it before, but only thing that comes up when I search "popover" :p

 

xivarmy

Overlord
Perk Creator
Some new info texts:

Code:
'WIN22|Find Elves Gifts by opening Mystery Presents!'
'WIN22|%d Elves Gift is ready to open!',
'WIN22|All Elves Gifts are ready to open!'
'WIN22|%d Elves Gifts are ready to open!',
'WIN22|This reward pool has been depleted!'

The "reward pool has been depleted" is interesting. Another new asset has been added called "popover reward pool background".

winter_popover_reward_pool_background.png

Related to the food? Can't say I had heard of it before, but only thing that comes up when I search "popover" :p

[/spoiler]
popover is a name sometimes used for what shows up when you hover on something. combination of "popup" and "hover over"

Sorry, wrong term. popover is a popup that blocks interaction with the window below it.
 
Top