User prompt
Move the lore jumpsuit to the right by 100 pixels.
User prompt
Move the lower jumpsuit to the left by 300 pixels
User prompt
Move Velour Jumpsuit to the left by 500 pixels.
User prompt
Move the lore jumpsuit down by 100 pixels
User prompt
Move the lower jumpsuit down 200 pixels.
User prompt
Add for Lord Jumpsuit to the screen.
User prompt
Move Plaid Button Up Shirt up by 20 pixels
User prompt
Move Plaid Button Up shirt up by 20 pixels.
User prompt
Move plaid button up shirt down by 20 pixels.
User prompt
move plaid button up shirt down by 40 pixels
User prompt
Move plaid button up shirt to the right by 50 pixels
User prompt
Move plaid button up shirt up 500 pixels
User prompt
Add plaid button-up shirt to the screen.
User prompt
Move pink leopard mink down by 20 pixels.
User prompt
Move Pink Leopard Mink down by 20 pixels.
User prompt
Move Pink Leopard Mink down by 20 pixels.
User prompt
Move Pink Leopard Mink to the left by 1000 pixels
User prompt
Add the pink leopard mink to the screen.
User prompt
Move Grandad's coat up by 20 pixels.
User prompt
Move Grandad's coat to the right by 25 pixels.
User prompt
Move Grandad's coat to the right by 20 pixels.
User prompt
Add Grandad's coat to the screen.
User prompt
Move dookie brown leather jacket to the left by 20 pixels
User prompt
Move the dookie brown leather jacket to the right by 300 pixels.
User prompt
Move Dookie Brown Leather Jacket over by 500 pixels.
/**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x000000 }); /**** * Game Code ****/ // Create a title page var titlePage = game.addChild(new Container()); titlePage.addChild(LK.getAsset('titlescreen', { anchorX: 0.5, anchorY: 0.5, x: 1024, y: 1366 })); // Create a start button var startButton = titlePage.addChild(LK.getAsset('categoryButton', { anchorX: 0.5, anchorY: 0.5, x: 1024, y: 1666, scaleX: 1.5, scaleY: 1.5 })); // Add text to the start button var startButtonText = new Text2('Start', { size: 50, fill: 0xFFFFFF }); startButtonText.anchor.set(0.5, 0.5); startButton.addChild(startButtonText); startButton.interactive = true; startButton.on('down', function () { // Remove the title page when the start button is clicked titlePage.destroy(); // Add the thrift background when the start button is clicked game.addChild(LK.getAsset('thriftBackground', { anchorX: 0.5, anchorY: 0.5, x: 1024, y: 1366 })); // Add big-ass coat to the game screen var bigAssCoat = game.addChild(LK.getAsset('bigAssCoat', { anchorX: 0.5, anchorY: 0.5, x: 1524, y: 2040 })); // Add Dookie Brown leather jacket to the game screen var dookieBrownLeatherJacket = game.addChild(LK.getAsset('dookieBrownLeatherJacket', { anchorX: 0.5, anchorY: 0.5, x: 2224, y: 2040 })); // Add instruction box with black background to the middle of the screen var instructionBox = game.addChild(LK.getAsset('instructionBox', { anchorX: 0.5, anchorY: 0.5, x: 1024, y: 1366, scaleX: 1.5, scaleY: 1.5 })); // Add text to the instruction box var instructionText = new Text2('Welcome to Poppin\' Tags: A Thrift Shop Adventure.', { size: 50, fill: 0xFFFFFF }); instructionText.anchor.set(0.5, 0.5); instructionText.zIndex = 2; // Increase zIndex to place text in front of instruction box instructionBox.addChild(instructionText); instructionBox.interactive = true; var clickCount = 0; instructionBox.on('down', function () { clickCount++; if (clickCount === 1) { instructionText.setText('You have $20 in your pocket and are huntin\' for a come-up.'); } else if (clickCount === 2) { instructionText.setText('Try and buy all items on your shopping list \n as cheap as you can. This is gonna be AWESOME!!!'); } else if (clickCount === 3) { instructionBox.destroy(); // Create a shopping cart with $20 in budget var shoppingCart = game.addChild(LK.getAsset('moneyContainer', { anchorX: 0.5, anchorY: 0.5, x: 200, y: 300, scaleX: 1.5, scaleY: 1.5 })); var budgetText = new Text2('$20', { size: 50, fill: 0xFFFFFF }); budgetText.anchor.set(0.5, 0.5); budgetText.zIndex = 2; // Increase zIndex to place text in front of shopping cart shoppingCart.addChild(budgetText); } }); });
/****
* Initialize Game
****/
var game = new LK.Game({
backgroundColor: 0x000000
});
/****
* Game Code
****/
// Create a title page
var titlePage = game.addChild(new Container());
titlePage.addChild(LK.getAsset('titlescreen', {
anchorX: 0.5,
anchorY: 0.5,
x: 1024,
y: 1366
}));
// Create a start button
var startButton = titlePage.addChild(LK.getAsset('categoryButton', {
anchorX: 0.5,
anchorY: 0.5,
x: 1024,
y: 1666,
scaleX: 1.5,
scaleY: 1.5
}));
// Add text to the start button
var startButtonText = new Text2('Start', {
size: 50,
fill: 0xFFFFFF
});
startButtonText.anchor.set(0.5, 0.5);
startButton.addChild(startButtonText);
startButton.interactive = true;
startButton.on('down', function () {
// Remove the title page when the start button is clicked
titlePage.destroy();
// Add the thrift background when the start button is clicked
game.addChild(LK.getAsset('thriftBackground', {
anchorX: 0.5,
anchorY: 0.5,
x: 1024,
y: 1366
}));
// Add big-ass coat to the game screen
var bigAssCoat = game.addChild(LK.getAsset('bigAssCoat', {
anchorX: 0.5,
anchorY: 0.5,
x: 1524,
y: 2040
}));
// Add Dookie Brown leather jacket to the game screen
var dookieBrownLeatherJacket = game.addChild(LK.getAsset('dookieBrownLeatherJacket', {
anchorX: 0.5,
anchorY: 0.5,
x: 2224,
y: 2040
}));
// Add instruction box with black background to the middle of the screen
var instructionBox = game.addChild(LK.getAsset('instructionBox', {
anchorX: 0.5,
anchorY: 0.5,
x: 1024,
y: 1366,
scaleX: 1.5,
scaleY: 1.5
}));
// Add text to the instruction box
var instructionText = new Text2('Welcome to Poppin\' Tags: A Thrift Shop Adventure.', {
size: 50,
fill: 0xFFFFFF
});
instructionText.anchor.set(0.5, 0.5);
instructionText.zIndex = 2; // Increase zIndex to place text in front of instruction box
instructionBox.addChild(instructionText);
instructionBox.interactive = true;
var clickCount = 0;
instructionBox.on('down', function () {
clickCount++;
if (clickCount === 1) {
instructionText.setText('You have $20 in your pocket and are huntin\' for a come-up.');
} else if (clickCount === 2) {
instructionText.setText('Try and buy all items on your shopping list \n as cheap as you can. This is gonna be AWESOME!!!');
} else if (clickCount === 3) {
instructionBox.destroy();
// Create a shopping cart with $20 in budget
var shoppingCart = game.addChild(LK.getAsset('moneyContainer', {
anchorX: 0.5,
anchorY: 0.5,
x: 200,
y: 300,
scaleX: 1.5,
scaleY: 1.5
}));
var budgetText = new Text2('$20', {
size: 50,
fill: 0xFFFFFF
});
budgetText.anchor.set(0.5, 0.5);
budgetText.zIndex = 2; // Increase zIndex to place text in front of shopping cart
shoppingCart.addChild(budgetText);
}
});
});
onesie with socks. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
big coat. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
brown leather jacket. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
flannel zebra pyjamas. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
fur fox skin. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Pink leopard mink coat. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Wolf skin hat. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Velour jumpsuit. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Telescope. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Dirty blanket. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Velcro sneakers. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Plaid button up shirt. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
music keyboard. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Shopping list that says Big ass coat, Broken keyboard, skeet blanket, pink leopard mink, built-in onesie with the socks. In-Game asset. 2d. High contrast. No shadows
Price tag that says big ass coat $4.00. In-Game asset. 2d. High contrast. No shadows
Price tag that says Kneeboard $4.00. In-Game asset. 2d. High contrast. No shadows
police tag that says Broken Keyboard for $2. In-Game asset. 2d. High contrast. No shadows
Price tag that says Telescope $3.00. In-Game asset. 2d. High contrast. No shadows
price tag that's says Dookie Brown Leather Jacket $3.50. In-Game asset. 2d. High contrast. No shadows
price tag that says pink leopard mink $5. In-Game asset. 2d. High contrast. No shadows
price tag that says plaid button up shirt $2. In-Game asset. 2d. High contrast. No shadows
Price tag that says Gator shoes $3.00. In-Game asset. 2d. High contrast. No shadows
price tag that says fox skin $4.50. In-Game asset. 2d. High contrast. No shadows
Price tag that says Velcro sneakers $2.00. In-Game asset. 2d. High contrast. No shadows
price tag that says house slippers $1.50. In-Game asset. 2d. High contrast. No shadows
Price tag that says velour jumpsuit $3.00. In-Game asset. 2d. High contrast. No shadows
price tag that says wolf skin hat $2. In-Game asset. 2d. High contrast. No shadows
Price tag that says skeet blanket $2.00. In-Game asset. 2d. High contrast. No shadows
Price tag that says Zebra Pyjamas $2.50. In-Game asset. 2d. High contrast. No shadows
Green Discount price tag that says Big ass coat $2.40. In-Game asset. 2d. High contrast. No shadows
green price tag that says discount Dookie Brown Leather Jacket $2.80. In-Game asset. 2d. High contrast. No shadows
Green price tag that says discount kneeboard $3.20. In-Game asset. 2d. High contrast. No shadows
green price tag that says discount plaid button up shirt $1.60. In-Game asset. 2d. High contrast. No shadows
green price tag that says discount zebra pajamas $2. In-Game asset. 2d. High contrast. No shadows
Green pricetag that says discount Telescope $2.40. In-Game asset. 2d. High contrast. No shadows
green price tag that says discount velour jumpsuit $2.40. In-Game asset. 2d. High contrast. No shadows
Green pricetag that says discount Velcro sneakers $1.60. In-Game asset. 2d. High contrast. No shadows
green price tag that says discount house slippers $1.20. In-Game asset. 2d. High contrast. No shadows
green price tag that says discount wolf skin hat $1.60. In-Game asset. 2d. High contrast. No shadows
Green pricetag that says discount gator shoes $2.40. In-Game asset. 2d. High contrast. No shadows
Green pricetag that says discount built in onesie with socks $1.60. In-Game asset. 2d. High contrast. No shadows
Price tag that says built-in onesie with socks $2.00. In-Game asset. 2d. High contrast. No shadows
green price tag that says discount pink leopard mink 99 cents! In-Game asset. 2d. High contrast. No shadows
green price tag that says discount fox skin $2 In-Game asset. 2d. High contrast. No shadows
green price tag that says discount skeet blanket $0.50 In-Game asset. 2d. High contrast. No shadows
Green price tag that says discount broken keyboard $1 In-Game asset. 2d. High contrast. No shadows
Make picture transparent
Make picture transparent
Make picture transparent
Make picture transparent
Make picture transparent
Add number 5 to painted area
Sign that says play the notes in right order to start the game. In-Game asset. 2d. High contrast. No shadows
portrait banner, high definition, for a game titled "Poppin' Tags: A Thrift Shop Trubute"
How to play button. In-Game asset. 2d. High contrast. No shadows
1
Sound effect
2
Sound effect
3
Sound effect
4
Sound effect
5
Sound effect
6
Sound effect
7
Sound effect
8
Sound effect
Item1
Sound effect
Instrumental
Music
instrumentalMusic
Music
Heymacklemore
Sound effect
Cash
Sound effect
Leopardmink
Sound effect
Gatorshoes
Sound effect
Houseslippers
Sound effect
Dookiebrown
Sound effect
Velcros
Sound effect
Grandmascoat
Sound effect
Bigasscoat
Sound effect
Kneeboard
Sound effect
Brokenkeyboard
Sound effect
Skeetblanket
Sound effect
Foxfur
Sound effect
Builtinonesie
Sound effect
Plaidshirt
Sound effect
Telescope
Sound effect
Velourjumpsuit
Sound effect
Wolfhat
Sound effect
Zebrajamies
Sound effect
Poptags
Sound effect
Probsshoulda
Sound effect