User prompt
Fix Bug: 'TypeError: Cannot read properties of undefined (reading 'setText')' in this line: 'self.scoreTxt.setText(score.toString());' Line Number: 154
User prompt
Fix Bug: 'Uncaught ReferenceError: spawnChimney is not defined' in this line: 'spawnChimney();' Line Number: 180
User prompt
spawn each 10 till 15 seconds a new canon on the bottom
User prompt
put the initialisation of the cannons array from code line 285 under this array initialisations: var clouds = []; var snowflakes = [];
User prompt
delete this var chimneySpawnX = 2048; var chimneySpawnY = 2732 - 100; and put the spawn position directly in the spawn interval
User prompt
delete this function spawnChimney() { var chimney = new Chimney(); chimney.x = chimneySpawnX; chimney.y = chimneySpawnY; chimney.scoreTxt = scoreTxt; chimneys.push(chimney); self.addChild(chimney); LK.setTimeout(spawnChimney, 3000 + Math.random() * 2000); } var cannons = []; function spawnCannon() { var cannon = new Cannon(); cannon.x = 2048; cannon.y = 2732 - LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1).height; cannons.push(cannon); self.addChild(cannon); LK.setTimeout(spawnCannon, 10000 + Math.random() * 5000); } at code line 180
User prompt
put this: function spawnChimney() { var chimney = new Chimney(); chimney.x = chimneySpawnX; chimney.y = chimneySpawnY; chimney.scoreTxt = scoreTxt; chimneys.push(chimney); self.addChild(chimney); LK.setTimeout(spawnChimney, 3000 + Math.random() * 2000); } var cannons = []; function spawnCannon() { var cannon = new Cannon(); cannon.x = 2048; cannon.y = 2732 - LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1).height; cannons.push(cannon); self.addChild(cannon); LK.setTimeout(spawnCannon, 10000 + Math.random() * 5000); } under this LK.setInterval(function () { var cloudY = Math.random() * (2732 / 2 + 600); var cloud = new Cloud(); cloud.x = 2048; cloud.y = cloudY; if (clouds.length % 5 === 4) { cloud.alpha = 0.5; cloud.blinkTimer = 180; cloud.isBlinking = false; } clouds.push(cloud); self.addChild(cloud); }, 2000 + Math.random() * 3000);
User prompt
put this text: var cannons = []; function spawnCannon() { var cannon = new Cannon(); cannon.x = 2048; cannon.y = 2732 - LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1).height; cannons.push(cannon); self.addChild(cannon); LK.setTimeout(spawnCannon, 10000 + Math.random() * 5000); } under this: function spawnChimney() { var chimney = new Chimney(); chimney.x = chimneySpawnX; chimney.y = chimneySpawnY; chimney.scoreTxt = scoreTxt; chimneys.push(chimney); self.addChild(chimney); LK.setTimeout(spawnChimney, 3000 + Math.random() * 2000); }
User prompt
put this text: var cannons = []; function spawnCannon() { var cannon = new Cannon(); cannon.x = 2048; cannon.y = 2732 - LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1).height; cannons.push(cannon); self.addChild(cannon); LK.setTimeout(spawnCannon, 10000 + Math.random() * 5000); } under this: function spawnChimney() { var chimney = new Chimney(); chimney.x = chimneySpawnX; chimney.y = chimneySpawnY; chimney.scoreTxt = scoreTxt; chimneys.push(chimney); self.addChild(chimney); LK.setTimeout(spawnChimney, 3000 + Math.random() * 2000); } and delete the old code
User prompt
put this: var cannons = []; function spawnCannon() { var cannon = new Cannon(); cannon.x = 2048; cannon.y = 2732 - LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1).height; cannons.push(cannon); self.addChild(cannon); LK.setTimeout(spawnCannon, 10000 + Math.random() * 5000); } var scoreTxt = new Text2('0', { size: 150, fill: "#ffffff", align: 'center' }); under this: function spawnChimney() { var chimney = new Chimney(); chimney.x = chimneySpawnX; chimney.y = chimneySpawnY; chimney.scoreTxt = scoreTxt; chimneys.push(chimney); self.addChild(chimney); LK.setTimeout(spawnChimney, 3000 + Math.random() * 2000); }
User prompt
save my changes. do nothing else
User prompt
sort all spawn functions of game
User prompt
delete this shit: var cannonSpawnX = 2048; var cannonAsset = LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1); var cannonSpawnY = 2732 - cannonAsset.height; you fucking moron
User prompt
delte this useless code var cannonSpawnX = 2048; var cannonAsset = LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1); var cannonSpawnY = 2732 - cannonAsset.height; and specify the position directly
User prompt
spawn a canon randomly each 10 till 15 seconds
User prompt
delete code line 176 spawnCannon();
User prompt
canons should move to the left. If they leave the screen, destroy them
User prompt
dont spawn a canon at the start of the game
User prompt
Fix Bug: 'Uncaught TypeError: Cannot read properties of undefined (reading 'length')' in this line: 'var cannonSpawnY = 2732 - Cannon.prototype.createAsset('cannon', 'Cannon Graphics', 0.5, 1).height;' Line Number: 166
User prompt
each 10 till 15 seconds spawn a canon on the ground at the right corner.
User prompt
create a canon class
User prompt
the game is over, if a raven hit santa
User prompt
change line 6 to self.flySpeed = 5 + Math.random() * 7;
User prompt
remove the fly pattern... i never told you something about this
User prompt
change the position of they ravens on each tick in the LK.on-function
var score = 0; var Cannon = Container.expand(function () { var self = Container.call(this); var cannonGraphics = self.createAsset('cannon', 'Cannon Graphics', 0.5, 1); self.fireSpeed = 5; self.cannonBallSpeed = 10; self.cannonBalls = []; self.fireCannonBall = function () { var cannonBall = new CannonBall(); cannonBall.x = self.x; cannonBall.y = self.y; self.cannonBalls.push(cannonBall); self.addChild(cannonBall); }; self.moveCannonBalls = function () { for (var i = self.cannonBalls.length - 1; i >= 0; i--) { var cannonBall = self.cannonBalls[i]; cannonBall.y -= self.cannonBallSpeed; if (cannonBall.y < 0) { cannonBall.destroy(); self.cannonBalls.splice(i, 1); } } }; }); var CannonBall = Container.expand(function () { var self = Container.call(this); var cannonBallGraphics = self.createAsset('cannonBall', 'Cannon Ball Graphics', 0.5, 0.5); }); var Raven = Container.expand(function () { var self = Container.call(this); var ravenGraphics = self.createAsset('raven', 'Raven Graphics', 0.5, 0.5); ravenGraphics.scale.x *= -1.33; self.flySpeed = 5 + Math.random() * 7; self.move = function () { self.x += self.flySpeed; if (self.x > 2048 || self.y > 2732 || self.y < 0) { self.destroy(); } }; }); var Snowflake = Container.expand(function () { var self = Container.call(this); var snowflakeGraphics = self.createAsset('snowflake', 'Snowflake Graphics', 0.5, 0.5); self.fallSpeed = 2 + Math.random() * 3; self.move = function () { self.y += self.fallSpeed; if (self.y > 2732) { self.destroy(); } }; }); var Cloud = Container.expand(function () { var self = Container.call(this); var cloudGraphics = self.createAsset('cloud', 'Cloud Graphics', 0.5, 0.5); cloudGraphics.scale.set(5 * 1.75, 5); cloudGraphics.alpha = 0.85; self.speed = -3 - Math.random() * 2; self.move = function () { self.x += self.speed; self.y += Math.sin(LK.ticks / 60) * 2; if (self.blinkTimer > 0) { self.blinkTimer--; if (self.blinkTimer === 0) { self.isBlinking = true; self.storm = true; self.blinkEndTime = LK.ticks + 120; } } if (self.isBlinking) { if (LK.ticks % 30 < 15) { self.alpha = 0.5; } else { self.alpha = 0; } if (LK.ticks >= self.blinkEndTime) { self.isBlinking = false; self.storm = false; self.alpha = 0.85; } } if (self.x < -360) { self.destroy(); } }; }); var Santa = Container.expand(function () { var self = Container.call(this); var santaGraphics = self.createAsset('santa', 'Santa Graphics', .5, .5); santaGraphics.scale.set(3.6); self.baseSpeed = 8.75; self.currentSpeed = self.baseSpeed; if (self.slowDownTimer === 0) { self.tint = 0xFFFFFF; } self.slowDownTimer = 0; self.move = function (touchPosition) { if (self.slowDownTimer > 0) { self.currentSpeed = self.baseSpeed * 0.33; self.slowDownTimer--; } else { self.currentSpeed = self.baseSpeed; self.alpha = 1; } self.x += (touchPosition.x - self.x) * (self.currentSpeed / self.baseSpeed) * 0.02; self.y += (touchPosition.y - self.y) * (self.currentSpeed / self.baseSpeed) * 0.02; }; self.slowDown = function () { self.slowDownTimer = 180; self.alpha = 0.5; self.tint = 0xFFFFFF; }; self.throwPresent = function () { if (this.canThrow) { this.canThrow = false; LK.setTimeout(function () { self.canThrow = true; }, 500); } }; self.canThrow = true; }); var Present = Container.expand(function () { var self = Container.call(this); var presentGraphics = self.createAsset('present', 'Present Graphics', .5, .5); self.fall = function () { var gravity = 14; self.y += gravity; if (self.y > 2732) { self.destroy(); } }; }); var Chimney = Container.expand(function () { var self = Container.call(this); self.satisfied = false; var chimneyGraphics = self.createAsset('chimney', 'Chimney Graphics', .5, .5); chimneyGraphics.scale.y *= 1.5 * 1.75; self.speed = -5; self.moveAndCheckBounds = function () { if (!self.satisfied) { self.x += self.speed; } else { self.y += 5; } if (self.x < -chimneyGraphics.width || self.y > 2732) { self.destroy(); } }; self.checkCollision = function (present) { if (self.intersects(present) && present.y >= self.y - self.height / 2 && present.y <= self.y && !self.satisfied) { self.satisfied = true; score += 1; self.scoreTxt.setText(score.toString()); present.destroy(); LK.setTimeout(function () { self.destroy(); }, 1000); } }; }); var Game = Container.expand(function () { var self = Container.call(this); var scoreTxt = new Text2('0', { size: 150, fill: "#ffffff", align: 'center' }); scoreTxt.anchor.set(0.5, 0); scoreTxt.x = 2048 / 2; scoreTxt.y = 100; LK.gui.addChild(scoreTxt); var santa = self.addChild(new Santa()); santa.x = 2048 / 2; santa.y = 2732 / 2; var presents = []; var chimneys = []; spawnChimney(); LK.on('tick', function () { santa.move(touchPosition); for (var i = presents.length - 1; i >= 0; i--) { presents[i].fall(); if (presents[i].y > 2732) { presents[i].destroy(); presents.splice(i, 1); } } for (var r = 0; r < ravens.length; r++) { ravens[r].move(); if (santa.intersects(ravens[r])) { LK.showGameOver(); } if (ravens[r].x > 2048 || ravens[r].y > 2732 || ravens[r].y < 0) { ravens[r].destroy(); ravens.splice(r, 1); r--; } } for (var k = 0; k < clouds.length; k++) { clouds[k].move(); if (clouds[k].storm && santa.intersects(clouds[k])) { LK.showGameOver(); } if (clouds[k].x < -clouds[k].width) { clouds[k].destroy(); clouds.splice(k, 1); k--; } } for (var j = 0; j < chimneys.length; j++) { chimneys[j].moveAndCheckBounds(); if (santa.intersects(chimneys[j])) { LK.showGameOver(); } for (var i = 0; i < presents.length; i++) { chimneys[j].checkCollision(presents[i]); } if (chimneys[j].x < -chimneys[j].width || chimneys[j].y > 2732) { chimneys[j].destroy(); chimneys.splice(j, 1); j--; } } for (var s = 0; s < snowflakes.length; s++) { snowflakes[s].move(); if (santa.intersects(snowflakes[s])) { santa.slowDown(); snowflakes[s].destroy(); snowflakes.splice(s, 1); s--; continue; } if (snowflakes[s].y > 2732) { snowflakes[s].destroy(); snowflakes.splice(s, 1); s--; } } }); var touchPosition = { x: santa.x, y: santa.y }; var ravens = []; LK.setInterval(function () { var raven = new Raven(); raven.x = 0; raven.y = Math.random() * 1200 + 1000; ravens.push(raven); self.addChild(raven); }, 3000 + Math.random() * 3000); var clouds = []; var snowflakes = []; LK.setInterval(function () { var snowflake = new Snowflake(); snowflake.x = Math.random() * 2048; snowflake.y = 0; snowflakes.push(snowflake); self.addChild(snowflake); }, 1440); LK.setInterval(function () { var cloudY = Math.random() * (2732 / 2 + 600); var cloud = new Cloud(); cloud.x = 2048; cloud.y = cloudY; if (clouds.length % 5 === 4) { cloud.alpha = 0.5; cloud.blinkTimer = 180; cloud.isBlinking = false; } clouds.push(cloud); self.addChild(cloud); }, 2000 + Math.random() * 3000); function spawnChimney() { var chimney = new Chimney(); chimney.x = 2048; chimney.y = 2732 - 100; chimney.scoreTxt = scoreTxt; chimneys.push(chimney); self.addChild(chimney); LK.setTimeout(spawnChimney, 3000 + Math.random() * 2000); } var cannons = []; function spawnCannon() { var cannon = new Cannon(); cannon.x = 2048; cannon.y = 2732 - LK.getAsset('cannon', 'Cannon Graphics', 0.5, 1).height; cannons.push(cannon); self.addChild(cannon); LK.setTimeout(spawnCannon, 10000 + Math.random() * 5000); } stage.on('down', function (obj) { var event = obj.event; var pos = event.getLocalPosition(self); touchPosition = { x: pos.x, y: pos.y }; if (santa.canThrow) { var present = new Present(); present.x = santa.x; present.y = santa.y + 100; presents.push(present); self.addChild(present); santa.throwPresent(); } }); });
===================================================================
--- original.js
+++ change.js
@@ -174,10 +174,8 @@
santa.x = 2048 / 2;
santa.y = 2732 / 2;
var presents = [];
var chimneys = [];
- var chimneySpawnX = 2048;
- var chimneySpawnY = 2732 - 100;
spawnChimney();
LK.on('tick', function () {
santa.move(touchPosition);
for (var i = presents.length - 1; i >= 0; i--) {
@@ -274,10 +272,10 @@
self.addChild(cloud);
}, 2000 + Math.random() * 3000);
function spawnChimney() {
var chimney = new Chimney();
- chimney.x = chimneySpawnX;
- chimney.y = chimneySpawnY;
+ chimney.x = 2048;
+ chimney.y = 2732 - 100;
chimney.scoreTxt = scoreTxt;
chimneys.push(chimney);
self.addChild(chimney);
LK.setTimeout(spawnChimney, 3000 + Math.random() * 2000);
A lazy santa clause on his sleigh with reindeers. 2d cartoon, side view Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A christmas present, cartoon 2d, side view Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A chimney, cartoon 2d, side view Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
2d cartoon cloud, side view, game asset Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
2d cartoon of a lonely snowflake, sideview Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
evil flying cartoon raven, sideview, christmas style Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Cartoon of a christmas present, evil raven style, side view Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Froozen beard, cartoon, sideview Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Little brat on a sledge, girl, cartoon, winter, sideview, evil Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Little girl on a sledge, cartoon, winter, sideview, evil, winter boots Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
super christmas present, golden, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for santas cold resistence, cartoon, with the text: „Cold Resistence“ at top Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for premium christmas delivery, cartoon, with the text: „Premium Delivery“ at top Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for santa throwing a snowball, cartoon, with the text: „Snowball Master“ at top Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
christmas present for kind santa, cartoon, power up Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
christmas present for naughty santa, cartoon, power up Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a Snowball machine on the back of santas sledge, cartoon, with the text „snowball machine“ on the top Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for santa crow, on a circle, with the text „santa crow“ at top Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a pergament with a golden present at top, at the bottom there is the text: "Each tenth point you have the change to get a super Present, make sure naughty points are equal to kind points"
a pergament button with the Text: "OK"; 2 d game asset
a pergament with a raven stealing a christmas present on the top. At the bottom is the text: "Not only are ravens happy to receive gifts and are appeased by them, they also like to give the gift back... with deadly intent."
a pergament with a raven hit by a snowball on the top. At the bottom is the text: "Ravens may be naughty to deserve a snowball, but you should know, Ravens never forget!"
blue electricity in the sky cartoon, 2d
Icon for santa moving through walls, on a circle, with the text „transcendence“ at top, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a very speedy icicle, on a circle, with the text „pointed Icicle“ at top, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a froozen christmas present, on a circle, with the text „icy Surprise“ at top, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a explosive present, on a circle, with the text „detonating wrapping paper“ at top, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a mechanical arm, on a circle, with the text „Santa Ballista 360“ at top, cartoon, christmas style Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a electified snowball, on a circle, with the text „Thunderball“ at top, cartoon, christmas style Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
exclamation mark in the shape of a candy cane Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a snowball hitting a present in the sky, on a circle, with the text „Snowball Delivery“ at top, cartoon, christmas style Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Icon for a santa as a storm king on a circle, with the text „Storm King“ at top, cartoon, christmas style Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a pergament with a present throwed by someone into a basket at top, at the bottom there is the text: "There are many ways of how can throw a present. Let it just fall or throw it like a basketball."
a pergament with a snowball and two clouds, in one cloud is a powerful shield hidden, in a other cloud is a grinding grinch with a bomb. There is the text: "Everything can be hidden in the clouds. Throw a snowball to see what is there."
a pergament with santa on a sledge and his flying reindeers throwing a snowball to a raven. There is the text: "Its easier to hit something from above than below. Thanks to gravity."
a pergament with a freezing santa on a sledge in the sky. There is the text: "using the stationary mode is useful, but only movement will warm you up"
a pergament with a flying santa on his sledge hiding for ravens and storms. In front of him is a chimney. There is the text: "Flying low can save you from the birds and bad weather, but there are dangers too"
a pergament with Klaus and Jesper from the movie Klaus. There is the text: "A true selfless act always sparks another. -Klaus"
a pergament of a christmas present with a box glove trap. There is the text: "You think, the hit box is confusing? Thank you for your information. You get a present for this."
Icon for a snowball collide with snoflakes and becomes bigger, on a circle, with the text „ASSIMILATING SNOW“ at top, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Epic background of a grinch village in the mountains, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a electrified destroyed christmas present, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
raven with christmas hat and colorful scarf got hit by a snowball in the air, he is shocked, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a pergament of a christmas present hit by a storm lightning in the sky. There is the text: "Gifts are not guaranteed to withstand storm damage."
a pergament of a Santa Clause on his sledge with reindeers in the sky. He holds a scepter of candy cane. There is the text: "Click on Santa for a short duration to use the KeeperMode."
a pergament of a happy girl. she got a big fat slimy bug as chrismas present. There is the text: "If you find a bug, you cam write me a message on Discord FRVR. - Sasbe"
a pergament of Santa Clause on his flying sledge with reindeers, he flees for ravens and leaves a big frosty cloud behind him. There is the text "In Keeper Mode, you can touch santa and swipe your finger into the direction you want to move with extra speed"
a pergament of many snowflakes in the sky. With a high good Karma Counter. There is the text "high karma is a guarantee for a white christmas... and a slowly workday"
icon of a weatherproof christmas present flying in the sky, on a circle, cartoon. With the text: "weatherproof packaging" Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
epic landscape intro in the clouds. cartoon 2d style. It has the title: "Saint Karma"
a very deadly and sharp snowflake with skull shape, red, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a golden snowflake, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a snowball with magical powder, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a snowball with magical powder, white color with golden tone, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
snow powder in the sky, pixel Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
frozen golden beard, only beard, cartoon, side view Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a smartphone, christmas style Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a PC, christmas style Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
icon for a golden snowflake, on a circle, on the top is the text: "golden snowflakes" cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
There is the text: "there are many ways zo beat a highscore, but can you also beat all in once?" On a pergament with many highscores called good, bad, max, min and diff.
icon for santa with a thick warm coat, but his face is very cold, on a circle, with the text at top: "warming coat", cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a snowball with red power, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
white snowball with some blue glue, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
flying envelope with wings, christmas style, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a pergament letter with the name "Deadly Snow". It has a snowflake in shape of a skull on it. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a pergament letter with the name "Bad Nuts". It has a evil looking little girl brat with a ponytail on a sledge on it. vertical. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a pergament letter with the name "Very cloudy". It has a big cloud on it. vertical. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
the text "freezing circumstances", in a old font
a speech bubbly with a question mark, cartoon Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a pergament of Santa hiding with his flying sleigh and reindeers in a cloud. There is the text "In clouds you are protected from enemy attention."
a pergament of santa catching a flying envelope in the sky. There is the text "Catch any flying envelopes in the sky. Otherwise the evil forces will become stronger."
frame made of sharp ice, it fill the complete screen, in the center is black only
frame made of cozy clouds, it fill the complete screen, in the center is black only, on black background
frame made of dark clouds, some blue sparks, it fill the complete screen, in the center is white only, on white background
a pergament letter with the name "Replicating Snow". It has a cloud with replicating snowflakes on it. vertical. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a little bell Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
a red nut hidden in a snowball, side view, cartoon. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.