Code edit (3 edits merged)
Please save this source code
User prompt
add a list of generatorButton inside rightBoard
Code edit (1 edits merged)
Please save this source code
User prompt
create a new class generator button
User prompt
add a RightBoard instance to foreground container
User prompt
create a class for rightBoard
Code edit (1 edits merged)
Please save this source code
User prompt
call changeBackground after an explosion
User prompt
in self.changeBackground, use tween to make transition between old and new bg (fade-out & fade-in) βͺπ‘ Consider importing and using the following plugins: @upit/tween.v1
User prompt
in Background, create a list of asset background_0 to background_9 all not visible; use that list in changeBackground()
Code edit (1 edits merged)
Please save this source code
User prompt
in Background, add a function changeBackground(index)
Code edit (1 edits merged)
Please save this source code
User prompt
also add a screen flash on explosion
Code edit (8 edits merged)
Please save this source code
User prompt
add a new function shakeMiddleground that shakes only middlegroundContainer βͺπ‘ Consider importing and using the following plugins: @upit/tween.v1
Code edit (8 edits merged)
Please save this source code
User prompt
use a Background instance for the background
User prompt
create a background class; use background_1 asset
Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
User prompt
augment power of projections in up direction
Code edit (1 edits merged)
Please save this source code
User prompt
in updateHeartType, switch visibility of heart assets in the heartpool objects depending on their heartType
User prompt
ok change Projections algorithm : in Projections constructor add all heat types assets in the heart Container and only make visible current heatType ones
/**** 
* Plugins
****/ 
var tween = LK.import("@upit/tween.v1");
/**** 
* Classes
****/ 
var Background = Container.expand(function () {
	var self = Container.call(this);
	// Attach the background_1 asset to the class
	self.backgrounds = [];
	for (var i = 0; i <= 9; i++) {
		var background = self.attachAsset('background_' + i, {
			anchorX: 0.5,
			anchorY: 0.5,
			visible: false
		});
		self.backgrounds.push(background);
	}
	self.backgrounds[0].visible = true; // Set the initial background visible
	// Position the background at the center of the screen
	self.x = 2048 / 2;
	self.y = 2732 / 2;
	// Function to change the background based on the index
	self.changeBackground = function (index) {
		var currentBg = self.backgrounds.find(function (bg) {
			return bg.visible;
		});
		var newBg = self.backgrounds[index];
		if (currentBg !== newBg) {
			tween(currentBg, {
				alpha: 0
			}, {
				duration: 500,
				easing: tween.easeOut,
				onFinish: function onFinish() {
					currentBg.visible = false;
					newBg.alpha = 0;
					newBg.visible = true;
					tween(newBg, {
						alpha: 1
					}, {
						duration: 500,
						easing: tween.easeIn
					});
				}
			});
		}
	};
});
// Create a class for bigHeart
var BigHeart = Container.expand(function () {
	var self = Container.call(this);
	self.currentGraphic = null;
	self.nextGraphic = null;
	self.tapLimit = 20; // Initialize tap limit
	self.nbTapsPerFrame = self.tapLimit / 6; // Initialize number of taps per frame
	self.heartType = 0; // Initialize tap counter
	self.explosionTriggered = false; // Initialize explosion flag
	// Attach the bigHeart asset to the class
	var bigHeartGraphics = self.attachAsset('bigHeart', {
		anchorX: 0.5,
		anchorY: 0.5,
		alpha: 0.1
	});
	self.heartFrames = {}; // Initialize heartFrames as a property of BigHeart class
	for (var type = 9; type >= 0; type--) {
		self.heartFrames[type] = [];
		for (var i = 5; i >= 0; i--) {
			self.heartFrames[type][5 - i] = self.attachAsset('heart_' + type + '_frame_' + i, {
				anchorX: 0.5,
				anchorY: 0.5,
				scaleX: 0.9,
				scaleY: 0.9,
				heartType: type,
				index: 5 - i,
				visible: !i
			});
		}
	}
	self.currentGraphic = self.heartFrames[self.heartType][5];
	self.nextGraphic = self.heartFrames[self.heartType][4];
	self.currentGraphic.scaleX = 1.1;
	self.currentGraphic.scaleY = 1.1;
	self.currentGraphic.visible = true;
	self.nextGraphic.scaleX = 1.1;
	self.nextGraphic.scaleY = 1.1;
	self.nextGraphic.visible = true;
	// Position the bigHeart at the center of the screen
	self.x = 2048 / 2;
	self.y = 2732 / 2 - 300;
	// Define baseWidth and baseHeight
	var baseWidth = bigHeartGraphics.width;
	var baseHeight = bigHeartGraphics.height;
	// Event handler called when a press happens on element. This is automatically called on press if bigHeart is attached.
	self.down = function (x, y, obj) {
		// Play beat sound
		LK.getSound('bump').play();
		// Animate the size of the bigHeart to 1.5 times its original size over 0.5 seconds
		animateHeart(self.currentGraphic, 1.2, 1.1, 100);
		if (!self.explosionTriggered) {
			animateHeart(self.nextGraphic, 1.2, 1.1, 100);
		}
		log("Current indexes:: ", self.currentGraphic.index, ',', self.nextGraphic.index); // Log the tap count
		// Increment tap counter
		tapCount++; // Increment global tap counter
		// Create a new heart projection using the current frame index
		projectionsManager.popHearts(self.currentGraphic.heartType);
		updateTapCountText(); // Update the text display
		// Switch graphics based on tapCount
		var frameIndex = 5 - Math.floor(tapCount / self.nbTapsPerFrame);
		if (!self.explosionTriggered && tapCount < self.tapLimit * (self.heartType + 1) && frameIndex > 0) {
			self.currentGraphic = self.heartFrames[self.heartType][frameIndex];
			self.nextGraphic = self.heartFrames[self.heartType][frameIndex - 1];
			self.currentGraphic.visible = true;
			self.nextGraphic.visible = true;
			tween(self.currentGraphic, {
				scaleX: 1.1,
				scaleY: 1.1
			}, {
				duration: 300,
				easing: tween.easeOut
			});
			// Make next frame bigger
			tween(self.nextGraphic, {
				scaleX: 1.1,
				scaleY: 1.1
			}, {
				duration: 300,
				easing: tween.easeOut
			});
		} else if (tapCount >= self.tapLimit * (self.heartType + 1)) {
			log("Tap count: ", tapCount); // Log the tap count
			// Explosion
			triggerExplosion(self);
		}
		log("Tap count: ", tapCount); // Log the tap count
		self.currentGraphic.alpha = Math.max(0, Math.min(1, 1 - ((self.heartType + 1) * self.tapLimit - tapCount) / 10));
		// Log the down event
		log("Down event triggered on BigHeart");
		shakeMiddleground();
	};
});
var GeneratorButton = Container.expand(function () {
	var self = Container.call(this);
	// Attach a button asset to the class
	var buttonGraphics = self.attachAsset('generatorButton', {
		anchorX: 0.5,
		anchorY: 0.5
	});
	// Position the button at the center of the screen
	self.x = 2048 / 2;
	self.y = 2732 / 2;
	// Event handler called when a press happens on the button
	self.down = function (x, y, obj) {
		console.log("Generator button pressed");
		// Implement logic to trigger generator purchase or upgrade
	};
});
// Create a class for Projections
var Projections = Container.expand(function () {
	var self = Container.call(this);
	var nbProjections = 5;
	var heartSpeed = 20;
	var gravity = 0.5;
	var initialScale = 0.25;
	var scaleVariation = 0.5;
	var alphaDecay = 0.002;
	self.heartPool = [];
	self.preloadedAssets = {}; // Preload assets for each heart type
	for (var type = 0; type <= 9; type++) {
		self.preloadedAssets[type] = LK.getAsset('heart_' + type + '_frame_0', {
			anchorX: 0.5,
			anchorY: 0.5,
			scaleX: 0.5,
			scaleY: 0.5
		});
	}
	// Initialize heart pool
	for (var i = 0; i < nbProjections * 5; i++) {
		var heart = new Container();
		heart.vx = 0;
		heart.vy = 0;
		heart.alpha = 0;
		heart.update = function () {
			this.x += this.vx;
			this.y += this.vy;
			this.vy += gravity; // Add gravity effect 
			this.alpha -= alphaDecay;
			if (this.alpha <= 0 || this.y > 2900) {
				this.alpha = 0;
				self.heartPool.push(this);
			}
		};
		// Add all heart type assets to the heart Container
		for (var type = 0; type <= 9; type++) {
			var heartAsset = heart.attachAsset('heart_' + type + '_frame_0', {
				anchorX: 0.5,
				anchorY: 0.5,
				scaleX: 0.5,
				scaleY: 0.5,
				heartType: type,
				visible: type === 0 // Only make the current heartType visible
			});
		}
		self.heartPool.push(heart);
	}
	self.x = 2048 / 2;
	self.y = 2732 / 2 - 400;
	// Function to pop hearts
	self.popHearts = function (heartType) {
		if (self.isUpdatingHeartType) {
			return;
		} // Exit if updateHeartType is running
		for (var i = 0; i < nbProjections; i++) {
			if (self.heartPool.length > 0) {
				var heart = self.heartPool.pop();
				if (heart.alpha <= 0) {
					// Ensure heart has finished its previous animation
					heart.x = 0;
					heart.y = 0;
					heart.vx = (Math.random() - 0.5) * heartSpeed;
					heart.vy = (Math.random() - 1.5) * heartSpeed;
					heart.alpha = 0.8;
					heart.scaleX = initialScale + Math.random() * scaleVariation; // Randomize scale between initialScale and initialScale + scaleVariation
					heart.scaleY = heart.scaleX; // Keep aspect ratio consistent
					heart.rotation = Math.random() * Math.PI * 2; // Randomize rotation between 0 and 2Ο
					self.addChild(heart);
				} else {
					self.heartPool.push(heart); // Return heart to pool if it hasn't finished animation
				}
			}
		}
	};
	self.updateHeartType = function (heartType) {
		// Update the heart type for all hearts in the pool
		self.isUpdatingHeartType = true; // Set flag to indicate updateHeartType is running
		self.heartPool.forEach(function (heart) {
			heart.children.forEach(function (child) {
				// Iterate over all children
				child.visible = child.heartType === heartType; // Set visibility based on heartType
			});
		});
		self.isUpdatingHeartType = false; // Reset flag after updateHeartType completes
	};
});
var RightBoard = Container.expand(function () {
	var self = Container.call(this);
	// Attach the rightBoard asset to the class
	var rightBoardGraphics = self.attachAsset('rightBoard', {
		anchorX: 0.5,
		anchorY: 0.5,
		visible: false
	});
	// Position the rightBoard at the right side of the screen
	self.x = 2048 / 2 + 512;
	self.y = 2732 / 2;
	self.generatorButtons = []; // Initialize an array to hold generator buttons
	// Create and position generator buttons
	for (var i = 0; i < 3; i++) {
		var generatorButton = new GeneratorButton();
		generatorButton.x = self.x + i * 100 - 100; // Position buttons with some spacing
		generatorButton.y = self.y;
		self.generatorButtons.push(generatorButton);
		self.addChild(generatorButton);
	}
	// Add any additional functionality or properties for rightBoard here
});
/**** 
* Initialize Game
****/ 
var game = new LK.Game({
	backgroundColor: 0xa16e9f //Init game with black background 
});
/**** 
* Game Code
****/ 
function shakeMiddleground() {
	tween(middlegroundContainer, {
		x: 10,
		y: 10
	}, {
		duration: 100,
		easing: tween.easeInOut,
		onFinish: function onFinish() {
			tween(middlegroundContainer, {
				x: -10,
				y: -10
			}, {
				duration: 100,
				easing: tween.easeInOut,
				onFinish: function onFinish() {
					tween(middlegroundContainer, {
						x: 0,
						y: 0
					}, {
						duration: 100,
						easing: tween.easeInOut
					});
				}
			});
		}
	});
}
function shakeScreen() {
	tween(game, {
		x: 10,
		y: 10
	}, {
		duration: 100,
		easing: tween.easeInOut,
		onFinish: function onFinish() {
			tween(game, {
				x: -10,
				y: -10
			}, {
				duration: 100,
				easing: tween.easeInOut,
				onFinish: function onFinish() {
					tween(game, {
						x: 0,
						y: 0
					}, {
						duration: 100,
						easing: tween.easeInOut
					});
				}
			});
		}
	});
}
function triggerExplosion(self) {
	if (!self.explosionTriggered) {
		LK.getSound('boom').play();
		LK.setTimeout(function () {
			LK.effects.flashScreen(0xffffff, 1000); // Flash the screen white for 500ms
			background.changeBackground((self.heartType + 1) % 10);
			// Make all frames of the current heartType invisible
			self.heartFrames[self.heartType].forEach(function (frame) {
				if (frame.index == self.nextGraphic.index) {
					return;
				}
				frame.visible = false;
			});
			projectionsManager.updateHeartType(self.heartType + 1);
			tween(self.nextGraphic, {
				scaleX: 45,
				scaleY: 45,
				alpha: 0
			}, {
				duration: 3000,
				easing: tween.easeOut,
				onFinish: function onFinish() {
					// Make all frames of the current heartType invisible
					self.heartFrames[self.heartType].forEach(function (frame) {
						frame.visible = false;
					});
					// Switch to the next heart type
					self.heartType = (self.heartType + 1) % 10;
					self.currentGraphic = self.heartFrames[self.heartType][5];
					self.nextGraphic = self.heartFrames[self.heartType][4];
					self.currentGraphic.visible = true;
					self.nextGraphic.visible = true;
					self.explosionTriggered = false; // Reset explosion flag
				}
			});
			// Make next frame bigger
			self.heartFrames[(self.heartType + 1) % 10][5].visible = true;
			self.heartFrames[(self.heartType + 1) % 10][4].visible = true;
			tween(self.heartFrames[(self.heartType + 1) % 10][5], {
				scaleX: 1.1,
				scaleY: 1.1
			}, {
				duration: 300,
				easing: tween.easeOut
			});
			// Make next frame bigger
			tween(self.heartFrames[(self.heartType + 1) % 10][4], {
				scaleX: 1.1,
				scaleY: 1.1
			}, {
				duration: 300,
				easing: tween.easeOut
			});
		}, 205);
		self.explosionTriggered = true;
	}
}
function animateHeart(graphic, scaleUp, scaleDown, duration) {
	tween(graphic, {
		scaleX: scaleUp,
		scaleY: scaleUp,
		x: 0
	}, {
		duration: duration,
		onFinish: function onFinish() {
			tween(graphic, {
				scaleX: scaleDown,
				scaleY: scaleDown,
				x: 0
			}, {
				duration: duration
			});
		}
	});
}
var nbHearts = 10;
var backgroundContainer = new Container();
var middlegroundContainer = new Container();
var foregroundContainer = new Container();
game.addChild(backgroundContainer);
game.addChild(middlegroundContainer);
game.addChild(foregroundContainer);
var background = new Background(); // Create a Background instance
backgroundContainer.addChild(background); // Add Background instance to the backgroundContainer
var isDebug = true;
var projectionsManager = backgroundContainer.addChild(new Projections()); // Place projectionsManager in backgroundContainer
function log() {
	if (isDebug) {
		console.log.apply(console, arguments);
	}
}
// Declare tapCount as a global variable
var tapCount = 0;
// Create a text object to display tapCount
var tapCountText = new Text2('LOVE\r\n ', {
	size: 100,
	fill: 0xFFFFFF,
	dropShadow: true,
	align: 'center'
});
// Center the text horizontally, anchor point set at the middle of its top edge.
tapCountText.anchor.set(0.5, 0);
// Position the text at the top-center of the screen.
LK.gui.top.addChild(tapCountText);
// Add a big heart at the center of the screen
var bigHeart = new BigHeart();
middlegroundContainer.addChild(bigHeart);
// Add a RightBoard instance to the foreground container
var rightBoard = new RightBoard();
foregroundContainer.addChild(rightBoard);
// Update the tapCountText whenever tapCount changes
function updateTapCountText() {
	tapCountText.setText('LOVE\r\n' + tapCount);
}
// Global ProgressManager
function _typeof(o) {
	"@babel/helpers - typeof";
	return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
		return typeof o;
	} : function (o) {
		return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
	}, _typeof(o);
}
function _classCallCheck(a, n) {
	if (!(a instanceof n)) {
		throw new TypeError("Cannot call a class as a function");
	}
}
function _defineProperties(e, r) {
	for (var t = 0; t < r.length; t++) {
		var o = r[t];
		o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o);
	}
}
function _createClass(e, r, t) {
	return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
		writable: !1
	}), e;
}
function _toPropertyKey(t) {
	var i = _toPrimitive(t, "string");
	return "symbol" == _typeof(i) ? i : i + "";
}
function _toPrimitive(t, r) {
	if ("object" != _typeof(t) || !t) {
		return t;
	}
	var e = t[Symbol.toPrimitive];
	if (void 0 !== e) {
		var i = e.call(t, r || "default");
		if ("object" != _typeof(i)) {
			return i;
		}
		throw new TypeError("@@toPrimitive must return a primitive value.");
	}
	return ("string" === r ? String : Number)(t);
}
var progressManager;
// Constants for Generators and Upgrades
var GENERATORS = {
	ME: {
		id: 1,
		name: "Me",
		description: "It's you! The player whose heart beats love",
		autoClick: false,
		clickRate: 0,
		cost: 0,
		upgradeLevel: 0
	},
	FAIRY: {
		id: 2,
		name: "Fairy",
		description: "A magical fairy that generates love beats",
		autoClick: true,
		clickRate: 0.1,
		// 1 click per 10 seconds
		cost: 100,
		upgradeLevel: 0
	}
};
var UPGRADES = {
	ROSE: {
		id: 1,
		name: "Rose",
		description: "A rose that enhances love generation",
		targetGenerator: 1,
		// Targets Generator #1 (Me)
		multipliers: [2, 4, 8],
		// Levels of multiplier
		cost: 10
	}
};
// Progress Management
function ProgressManager() {
	var self = this;
	self.money = 0;
	self.generators = {};
	self.upgrades = {};
	self.currentTime = Date.now();
	self.lastUpdateTime = self.currentTime;
	self.updateGame = function () {
		var now = Date.now();
		var deltaTime = now - self.lastUpdateTime;
		// Update generators
		Object.values(self.generators).forEach(function (generator) {
			var generated = generator.generate(deltaTime);
			self.money += generated;
		});
		self.lastUpdateTime = now;
	};
	self.buyGenerator = function (generatorId) {
		var generatorConfig = Object.values(GENERATORS).find(function (g) {
			return g.id === generatorId;
		});
		if (!generatorConfig) {
			throw new Error("Generator with id ".concat(generatorId, " not found"));
		}
		if (self.money < generatorConfig.cost) {
			return false;
		}
		self.money -= generatorConfig.cost;
		self.generators[generatorId] = new Generator(generatorConfig);
		return true;
	};
	self.buyUpgrade = function (upgradeId, generatorId) {
		var upgradeConfig = Object.values(UPGRADES).find(function (u) {
			return u.id === upgradeId;
		});
		var targetGenerator = self.generators[generatorId];
		if (!upgradeConfig || !targetGenerator) {
			throw new Error("Upgrade or Generator not found");
		}
		if (self.money < upgradeConfig.cost) {
			return false;
		}
		self.money -= upgradeConfig.cost;
		var upgrade = new Upgrade(upgradeConfig);
		upgrade.apply(targetGenerator);
		self.upgrades[upgradeId] = upgrade;
		return true;
	};
}
function Generator(config) {
	var self = this;
	self.id = config.id;
	self.name = config.name;
	self.description = config.description;
	self.autoClick = config.autoClick;
	self.clickRate = config.clickRate;
	self.cost = config.cost;
	self.upgradeLevel = config.upgradeLevel;
	self.generate = function (deltaTime) {
		if (!self.autoClick) {
			return 0;
		}
		var clickAmount = self.clickRate * deltaTime / 1000;
		return clickAmount * Math.pow(2, self.upgradeLevel);
	};
	self.currentMultiplier = Math.pow(2, self.upgradeLevel);
	self.manualGenerate = function () {
		return 1 * self.currentMultiplier;
	};
	self.upgrade = function (upgradeMultiplier) {
		self.upgradeLevel++;
	};
}
function Upgrade(config) {
	var self = this;
	self.id = config.id;
	self.name = config.name;
	self.description = config.description;
	self.targetGenerator = config.targetGenerator;
	self.multipliers = config.multipliers;
	self.cost = config.cost;
	self.currentLevel = 0;
	self.apply = function (generator) {
		if (self.currentLevel < self.multipliers.length) {
			generator.upgrade(self.multipliers[self.currentLevel]);
			self.currentLevel++;
		}
	};
}
function initializeGame() {
	progressManager = new ProgressManager();
	// Initialize starting generator (Me)
	progressManager.generators[GENERATORS.ME.id] = new Generator(GENERATORS.ME);
}
initializeGame(); ===================================================================
--- original.js
+++ change.js
@@ -253,9 +253,9 @@
 		anchorY: 0.5,
 		visible: false
 	});
 	// Position the rightBoard at the right side of the screen
-	self.x = 2048 - rightBoardGraphics.width / 2;
+	self.x = 2048 / 2 + 512;
 	self.y = 2732 / 2;
 	self.generatorButtons = []; // Initialize an array to hold generator buttons
 	// Create and position generator buttons
 	for (var i = 0; i < 3; i++) {
:quality(85)/https://cdn.frvr.ai/6795575b3e37286b7983d8ac.png%3F3) 
 a big lovely heart
:quality(85)/https://cdn.frvr.ai/679608d4b242d70a84f2bb06.png%3F3) 
 a big stone heart
:quality(85)/https://cdn.frvr.ai/67960abbb242d70a84f2bb12.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/6796547cd63d184aa47a9fd2.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67965648b242d70a84f2bba2.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/679656e4b242d70a84f2bbab.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/679657b8b242d70a84f2bbae.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/679972141f2a754c4618425f.png%3F3) 
 a big used copper heart
:quality(85)/https://cdn.frvr.ai/679972ff1f2a754c46184275.png%3F3) 
 face view of a big bronze heart
:quality(85)/https://cdn.frvr.ai/679973ca1f2a754c46184297.png%3F3) 
 face view of a big silver heart
:quality(85)/https://cdn.frvr.ai/679975c71f2a754c461842dc.png%3F3) 
 Big shining gold heart verly slightly ornate. face view.
:quality(85)/https://cdn.frvr.ai/6799770a1f2a754c461842fe.png%3F3) 
 Big precious shiny porcelain heart slightly ornate. face view.
:quality(85)/https://cdn.frvr.ai/679978441f2a754c46184320.png%3F3) 
 Large precious heart in mother-of-pearl, lightly ornate. Front view.
:quality(85)/https://cdn.frvr.ai/679979061f2a754c4618432d.png%3F3) 
 Large heart in precious ruby, very lightly decorated. Front view.
:quality(85)/https://cdn.frvr.ai/6799799f1f2a754c4618433b.png%3F3) 
 The most precious large heart in diamond, Front view.
:quality(85)/https://cdn.frvr.ai/679aa2340aab9af650c0f77a.png%3F3) 
 clean pink enamel board witha very thin border
:quality(85)/https://cdn.frvr.ai/679aba2fc311aaae2198e5ef.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8a18b68c182ca2db2ab01.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8d8928cabef597a6d193b.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8d8ef8cabef597a6d1941.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8d90a8cabef597a6d1946.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8d9458cabef597a6d194b.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8d9848cabef597a6d1951.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8dae18cabef597a6d1960.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8dafa8cabef597a6d196a.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8db3f8cabef597a6d1979.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8db768cabef597a6d197e.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a8ec3dbadf5001415a6126.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a925e8badf5001415a61ab.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a9283fbadf5001415a61b3.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a92880badf5001415a61b6.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a928b2badf5001415a61ba.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a928cbbadf5001415a61be.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a92b80badf5001415a6205.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a92bbfbadf5001415a620a.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a932d7badf5001415a6238.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67a99decfea36315b70304ce.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aa5fb1766195a6aae38f18.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aa600a766195a6aae38f1b.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aa607e766195a6aae38f20.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aa6598766195a6aae38f23.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aa67cb766195a6aae38f26.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aced0aec046e6574e00711.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aced7eec046e6574e00717.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acee3eec046e6574e0071d.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67aceea3ec046e6574e00720.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acef19ec046e6574e00723.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acef97ec046e6574e00726.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfa32ec046e6574e00742.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfbaeec046e6574e00745.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfc0fec046e6574e00748.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfc89ec046e6574e0074b.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfcd0ec046e6574e0074e.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfd17ec046e6574e00751.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfd8dec046e6574e00756.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfdf3ec046e6574e00759.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67acfe5aec046e6574e0075c.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ad193ae366fb4797fc375d.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ad199fe366fb4797fc3761.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ad1d78e366fb4797fc379e.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ad1de1e366fb4797fc37ac.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ad1e70e366fb4797fc37c3.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae16b0752b0d388fcd9444.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae16ef752b0d388fcd9447.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1735752b0d388fcd944d.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae17a5752b0d388fcd9450.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1804752b0d388fcd9453.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1833752b0d388fcd9456.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae189e752b0d388fcd9459.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae18ea752b0d388fcd945c.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae193c752b0d388fcd945f.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae199c752b0d388fcd9462.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae19d7752b0d388fcd9465.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1a09752b0d388fcd9468.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1a64752b0d388fcd946e.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1abc752b0d388fcd9471.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1b58752b0d388fcd9474.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1b86752b0d388fcd9477.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1bb7752b0d388fcd947a.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1c23752b0d388fcd9480.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1c72752b0d388fcd9483.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67ae1ced752b0d388fcd9486.png%3F3) 
 :quality(85)/https://cdn.frvr.ai/67d2f1ee249940bb44cc026a.png%3F3) 
 beautifull red gift box.
:quality(85)/https://cdn.frvr.ai/67d57da988248ab681d8fb6f.png%3F3) 
 black plastic 3d triangle. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
:quality(85)/https://cdn.frvr.ai/67d668f253da059024b02edb.png%3F3) 
 basic red horizontal rectangle button with white text "RESET".