generated from nighthawkcoders/student_2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Analytics Review: Key Accomplishments
Summary
For some reason the analytic for the open coding society isn't working so I had to use the github analytics, smart grade still worked showed proof of all my commits getting pulled.
Supporting Data
Insights
What do these accomplishments and data points tell us? Any trends, surprises, or lessons learned?
Key Accomplishments
- Creating the shop and adding multiple new shop items to make the game more interactivate aswell as helping create the game canvas and making the UI more playable.
const grandma = {
name: "Grandma",
emoji: "👵",
price: 69,
priceIncrementer: 1.5,
cookiesPerSecond: 1,
};
const factory = {
name: "Factory",
emoji: "🏭",
price: 400,
priceIncrementer: 1.4,
cookiesPerSecond: 4,
};
const mangotemple = {
name: "Mango Temple",
emoji: "🥭",
price: 2000,
priceIncrementer: 1.2,
cookiesPerSecond: 10,
};
const bank = {
name: "Bank",
emoji: "🏦",
price: 6741,
priceIncrementer: 1.1,
cookiesPerSecond: 20,
};
const shopItems = [];
shopItems.push(grandma);
shopItems.push(factory);
shopItems.push(mangotemple);
shopItems.push(bank);
const x2Click = {
name: "2X Clicks",
emoji: "🖱",
price: 150,
itemEffected: "click",
multiplier: 2,
};
shop.upgrades.push(x2Click);
shop.addItemForSale(grandma);
shop.addItemForSale(factory);
shop.addItemForSale(mangotemple);
shop.addItemForSale(bank);
gameLoop.fetchSavedData();
cookie.fetchStoredCookies();
cookieButton.addEventListener("click", () => {
console.log("COOKIE");
if (cookie.cookieMulti) {
cookie.addCookies(1 * cookie.cookieMulti);
} else {
cookie.addCookies(1);
}
console.log(cookie.cookies);
gameLoop.getAmount("Grandma");
gameLoop.getAmount("Factory");
gameLoop.getAmount("MangoTemple");
gameLoop.getAmount("Bank");
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels