Code edit (2 edits merged)
Please save this source code
User prompt
Turn the particles container into a full class
Code edit (11 edits merged)
Please save this source code
User prompt
Create a dirt particle element that fades over time.
User prompt
When the chicken moves, spawn dirt particle at the bottom center of the chicken
Code edit (4 edits merged)
Please save this source code
User prompt
Add the start flag to the left of platform 2
Code edit (1 edits merged)
Please save this source code
User prompt
Create a separate class for the large bork overlay, similar to spikes rather than attaching it to platform
Code edit (3 edits merged)
Please save this source code
User prompt
Add the large_bork banner to the end of platform 2
User prompt
When you die flash the screen red
Code edit (7 edits merged)
Please save this source code
User prompt
Add the small_bork to the center of the first platform
Code edit (8 edits merged)
Please save this source code
User prompt
Add the start flag at the end of platform 1
Code edit (1 edits merged)
Please save this source code
Code edit (7 edits merged)
Please save this source code
User prompt
Above the 3rd platform add dangerous spikes
Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
Code edit (1 edits merged)
Please save this source code
Initial prompt
Chicken Run
/**** * Classes ****/ //<Assets used in the game will automatically appear here> //<Write imports for supported plugins here> // Chicken class representing the player character var Chicken = Container.expand(function () { var self = Container.call(this); var chickenGraphics = self.attachAsset('chicken', { anchorX: 0.5, anchorY: 0.5 }); self.speed = 5; // Default speed self.update = function () { // Update logic for chicken }; }); /**** * Initialize Game ****/ var game = new LK.Game({ backgroundColor: 0x87ceeb // Sky blue background }); /**** * Game Code ****/ // Initialize chicken and add to game var chicken = game.addChild(new Chicken()); chicken.x = 2048 / 2; chicken.y = 2732 - 150; // Start near the bottom of the screen // Function to handle voice input function handleVoiceInput(command) { if (command === 'jump') { chicken.y -= 100; // Make the chicken jump } else if (command === 'left') { chicken.x -= chicken.speed; // Move left } else if (command === 'right') { chicken.x += chicken.speed; // Move right } } // Simulate voice input for demonstration purposes var simulatedCommands = ['jump', 'left', 'right']; var commandIndex = 0; LK.setInterval(function () { handleVoiceInput(simulatedCommands[commandIndex]); commandIndex = (commandIndex + 1) % simulatedCommands.length; }, 2000); // Update function for game logic game.update = function () { // Game update logic };
/****
* Classes
****/
//<Assets used in the game will automatically appear here>
//<Write imports for supported plugins here>
// Chicken class representing the player character
var Chicken = Container.expand(function () {
var self = Container.call(this);
var chickenGraphics = self.attachAsset('chicken', {
anchorX: 0.5,
anchorY: 0.5
});
self.speed = 5; // Default speed
self.update = function () {
// Update logic for chicken
};
});
/****
* Initialize Game
****/
var game = new LK.Game({
backgroundColor: 0x87ceeb // Sky blue background
});
/****
* Game Code
****/
// Initialize chicken and add to game
var chicken = game.addChild(new Chicken());
chicken.x = 2048 / 2;
chicken.y = 2732 - 150; // Start near the bottom of the screen
// Function to handle voice input
function handleVoiceInput(command) {
if (command === 'jump') {
chicken.y -= 100; // Make the chicken jump
} else if (command === 'left') {
chicken.x -= chicken.speed; // Move left
} else if (command === 'right') {
chicken.x += chicken.speed; // Move right
}
}
// Simulate voice input for demonstration purposes
var simulatedCommands = ['jump', 'left', 'right'];
var commandIndex = 0;
LK.setInterval(function () {
handleVoiceInput(simulatedCommands[commandIndex]);
commandIndex = (commandIndex + 1) % simulatedCommands.length;
}, 2000);
// Update function for game logic
game.update = function () {
// Game update logic
};
Golden chicken trophy. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Row of Spikes. Computer Game Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
A simple wide hand-drawn symmetrical ribbon banners. The banner text reads “Small bawk to move” in playful, cartoonish black lettering. The ribbon is warm beige parchment. Each side ends with simple curved, scroll-like ribbon. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
A simple wide hand-drawn symmetrical ribbon banners. The banner text reads “Big BAWK to Jump!” in playful, cartoonish black lettering. The ribbon is warm beige parchment. Each side ends with simple curved, scroll-like ribbon. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows.
Cartoon-style rectangular speech bubble with a sharp, dynamic outline. Inside the bubble, create the text ‘BAWK’ in bold, vibrant orange-to-yellow gradient lettering, with a thick black jagged shadow for contrast. The text should have a dynamic comic-style font and appear slightly 3D. The bubble should have a sharp tail pointing downward, consistent with comic-style speech bubbles. The intent is that we are shouting "BAWK".. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows
Simple cartoon whisper speech bubble with text "bawk" lowercase lettering. Single Game Texture. In-Game asset. 2d. Blank background. High contrast. No shadows