Skip to content

Eltacobranch #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 36 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
58 changes: 58 additions & 0 deletions Index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>MetaMask Connect</title>
<meta charset="UTF-8"/>
<script src="./node_modules/@metamask/onboarding/dist/metamask-onboarding.bundle.js"></script>
</head>
<body>
<h1>Connect Metamask with your app</h1>
<button id="onboard">Loading...</button>
<p>Your wallet address : </p>
<script>
window.addEventListener('DOMContentLoaded', () => {
const onboarding = new MetaMaskOnboarding();
const onboardButton = document.getElementById('onboard');
let accounts;

const updateButton = () => {
if (!MetaMaskOnboarding.isMetaMaskInstalled()) {
onboardButton.innerText = 'Click here to install MetaMask!';
onboardButton.onclick = () => {
onboardButton.innerText = 'Onboarding in progress';
onboardButton.disabled = true;
onboarding.startOnboarding();
};
} else if (accounts && accounts.length > 0) {
onboardButton.innerText = 'Connected';
onboardButton.disabled = true;
onboarding.stopOnboarding();
} else {
onboardButton.innerText = 'Connect';
onboardButton.onclick = async () => {
getAccounts();
};
}
};
updateButton();

async function getAccounts() {
accounts = await window.ethereum.request({method: 'eth_requestAccounts'});
const account = accounts[0];
const response = fetch("/wallet", {
method: "POST",
headers: {
"Content-type": "application/json"
},
body: JSON.stringify({address: account})
})
let address_display = document.querySelector("p");
address_display.innerText = "Your wallet address : " + account;
updateButton();
}
});

</script>
</body>
</html>
22 changes: 22 additions & 0 deletions Test_Serv.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Test Server

const express = require("express")
const path = require("path");

const app = express();
const port = 3000;

// Setting path for directory
const static_path = path.join(__dirname, "");
app.use(express.static(static_path));
app.use(express.urlencoded({ extended: true }));

// Handling request
app.post("/wallet", (req) => {
console.log(req.body.address) // This is the user's wallet address
})

// Server Setup
app.listen(port, () => {
console.log(`server is running at ${port}`);
});
1 change: 0 additions & 1 deletion backend/.env.example

This file was deleted.

Binary file added backend/layers/Background Boy/Blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Boy/Orange.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Boy/Purple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Boy/Red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Boy/Teal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Caesar/Caesar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Cyborg/Cyborg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Girl/Blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Girl/Orange.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Girl/Purple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Girl/Red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Girl/Teal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Background Whale/Ocean Blur.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed backend/layers/Background/Black.png
Binary file not shown.
Binary file removed backend/layers/Background/Blue.png
Binary file not shown.
Binary file removed backend/layers/Background/Orange.png
Binary file not shown.
Binary file removed backend/layers/Background/Yellow.png
Binary file not shown.
Binary file added backend/layers/Base Boy/Base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Base Caesar/Caesar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Base Cyborg/Cyborg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Base Girl/Base Girl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Bottom Boy/Bear.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Bottom Boy/Black Cutoffs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Bottom Boy/Black Jeans.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Bottom Boy/Black Shorts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added backend/layers/Bottom Boy/Blue Dot Shorts.png
Binary file added backend/layers/Bottom Boy/Blue Puffy Pants.png
Binary file added backend/layers/Bottom Boy/Blue Trunks.png
Binary file added backend/layers/Bottom Boy/Cutoffs.png
Binary file added backend/layers/Bottom Boy/Flamin Jeans.png
Binary file added backend/layers/Bottom Boy/Gold Metal.png
Binary file added backend/layers/Bottom Boy/Grey Sweats.png
Binary file added backend/layers/Bottom Boy/Jeans.png
Binary file added backend/layers/Bottom Boy/Ketchup Stained.png
Binary file added backend/layers/Bottom Boy/Khaki Shorts.png
Binary file added backend/layers/Bottom Boy/Khaki.png
Binary file added backend/layers/Bottom Boy/Maroon Sweats.png
Binary file added backend/layers/Bottom Boy/Metal.png
Binary file added backend/layers/Bottom Boy/Polar Bear.png
Binary file added backend/layers/Bottom Boy/Purple Puffy Pants.png
Binary file added backend/layers/Bottom Boy/Red Dot Shorts.png
Binary file added backend/layers/Bottom Boy/Red Metal.png
Binary file added backend/layers/Bottom Boy/Red Puffy Pants.png
Binary file added backend/layers/Bottom Boy/Red Trunks.png
Binary file added backend/layers/Bottom Boy/Roman.png
Binary file added backend/layers/Bottom Boy/Sweats.png
Binary file added backend/layers/Bottom Boy/Towel.png
Binary file added backend/layers/Bottom Boy/Underwear.png
Binary file added backend/layers/Bottom Boy/White Shorts.png
Binary file added backend/layers/Bottom Boy/Yellow Trunks.png
Binary file added backend/layers/Bottom Boy/Zanarkand.png
Binary file added backend/layers/Bottom Caesar/Caesar Toga.png
Binary file added backend/layers/Bottom Cyborg/Cyborg.png
Binary file added backend/layers/Bottom Girl/Bear.png
Binary file added backend/layers/Bottom Girl/Black Cutoffs.png
Binary file added backend/layers/Bottom Girl/Black Jeans.png
Binary file added backend/layers/Bottom Girl/Black Shorts.png
Binary file added backend/layers/Bottom Girl/Blue Dot Shorts.png
Binary file added backend/layers/Bottom Girl/Blue Dress.png
Binary file added backend/layers/Bottom Girl/Blue Puffy Pants.png
Binary file added backend/layers/Bottom Girl/Blue Skirt.png
Binary file added backend/layers/Bottom Girl/Blue Trunks.png
Binary file added backend/layers/Bottom Girl/Cutoffs.png
Binary file added backend/layers/Bottom Girl/Flamin Jeans.png
Binary file added backend/layers/Bottom Girl/Gold Metal.png
Binary file added backend/layers/Bottom Girl/Grey Sweats.png
Binary file added backend/layers/Bottom Girl/Ketchup Stained.png
Binary file added backend/layers/Bottom Girl/Khaki Shorts.png
Binary file added backend/layers/Bottom Girl/Khaki.png
Binary file added backend/layers/Bottom Girl/Maroon Sweats.png
Binary file added backend/layers/Bottom Girl/Metal.png
Binary file added backend/layers/Bottom Girl/Peach Dress.png
Binary file added backend/layers/Bottom Girl/Polar Bear.png
Binary file added backend/layers/Bottom Girl/Purple Dress.png
Binary file added backend/layers/Bottom Girl/Purple Skirt.png
Binary file added backend/layers/Bottom Girl/Red Blowing Dress.png
Binary file added backend/layers/Bottom Girl/Red Dot Shorts.png
Binary file added backend/layers/Bottom Girl/Red Dress.png
Binary file added backend/layers/Bottom Girl/Red Metal.png
Binary file added backend/layers/Bottom Girl/Red Puffy Pants.png
Binary file added backend/layers/Bottom Girl/Red Skirt.png
Binary file added backend/layers/Bottom Girl/Red Trunks.png
Binary file added backend/layers/Bottom Girl/Roman.png
Binary file added backend/layers/Bottom Girl/Split Black Dress.png
Binary file added backend/layers/Bottom Girl/Split Pink Dress.png
Binary file added backend/layers/Bottom Girl/Sweats.png
Binary file added backend/layers/Bottom Girl/Taco Dress.png
Binary file added backend/layers/Bottom Girl/Towel.png
Binary file added backend/layers/Bottom Girl/White Shorts.png
Binary file added backend/layers/Bottom Girl/Yellow Trunks.png
Binary file added backend/layers/Bottom Girl/Zanarkand.png
Binary file removed backend/layers/Bottom lid/High High #20.png
Diff not rendered.
Binary file removed backend/layers/Bottom lid/Low#40.png
Diff not rendered.
Binary file removed backend/layers/Bottom lid/Middle#40.png
Diff not rendered.
Binary file added backend/layers/Broom Held Item/Broom.png
Binary file removed backend/layers/Eye color/Cyan#1.png
Diff not rendered.
Binary file removed backend/layers/Eye color/Green#1.png
Diff not rendered.
Binary file removed backend/layers/Eye color/Pink#1.png
Diff not rendered.
Binary file removed backend/layers/Eye color/Purple#1.png
Diff not rendered.
Binary file removed backend/layers/Eye color/Red#1.png
Diff not rendered.
Binary file removed backend/layers/Eye color/Yellow#10.png
Diff not rendered.
Binary file removed backend/layers/Eyeball/Red#50.png
Diff not rendered.
Binary file removed backend/layers/Eyeball/White#50.png
Diff not rendered.
Binary file added backend/layers/Eyebrows Whale/Left Arch.png
Binary file added backend/layers/Eyes Boy/Anime.png
Binary file added backend/layers/Eyes Boy/Bandit.png
Binary file added backend/layers/Eyes Boy/Black Bug Eyes.png
Binary file added backend/layers/Eyes Boy/Black Crosseyed.png
Binary file added backend/layers/Eyes Boy/Black Glazed.png
Binary file added backend/layers/Eyes Boy/Black Gouged.png
Binary file added backend/layers/Eyes Boy/Blindfold.png
Binary file added backend/layers/Eyes Boy/Blue Fire.png
Binary file added backend/layers/Eyes Boy/Blue Glasses.png
Binary file added backend/layers/Eyes Boy/Blue Lightning.png
Binary file added backend/layers/Eyes Boy/Blue Sports Glasses.png
Binary file added backend/layers/Eyes Boy/Brown Bug Eyes.png
Binary file added backend/layers/Eyes Boy/Brown Crosseyed.png
Binary file added backend/layers/Eyes Boy/Brown Glazed.png
Binary file added backend/layers/Eyes Boy/Brown Gouged.png
Binary file added backend/layers/Eyes Boy/Bushy.png
Binary file added backend/layers/Eyes Boy/Cyclops.png
Binary file added backend/layers/Eyes Boy/Devilish.png
Binary file added backend/layers/Eyes Boy/Eye Patch.png
Binary file added backend/layers/Eyes Boy/Fire.png
Binary file added backend/layers/Eyes Boy/Gold Metal.png
Binary file added backend/layers/Eyes Boy/Grey Glazed.png
Binary file added backend/layers/Eyes Boy/Lightning.png
Binary file added backend/layers/Eyes Boy/Matrix.png
Binary file added backend/layers/Eyes Boy/Rainbow Shades.png
Binary file added backend/layers/Eyes Boy/Red Glasses.png
Binary file added backend/layers/Eyes Boy/Red Metal.png
Binary file added backend/layers/Eyes Boy/Red Sports Glasses.png
Binary file added backend/layers/Eyes Boy/Regular Black.png
Binary file added backend/layers/Eyes Boy/Regular Brown.png
Binary file added backend/layers/Eyes Boy/Regular Grey.png
Binary file added backend/layers/Eyes Boy/Robot.png
Binary file added backend/layers/Eyes Boy/Sad Black.png
Binary file added backend/layers/Eyes Boy/Sad Brown.png
Binary file added backend/layers/Eyes Boy/Sad Grey.png
Binary file added backend/layers/Eyes Boy/White Sports Glasses.png
Binary file added backend/layers/Eyes Caesar/Caesar.png
Binary file added backend/layers/Eyes Cyborg/Cyborg.png
Binary file added backend/layers/Eyes Girl/Bandit.png
Binary file added backend/layers/Eyes Girl/Black Blue Glazed.png
Binary file added backend/layers/Eyes Girl/Black Bug Eyes.png
Binary file added backend/layers/Eyes Girl/Black Gouged.png
Binary file added backend/layers/Eyes Girl/Black Purple Glazed.png
Binary file added backend/layers/Eyes Girl/Black Yellow Glazed.png
Binary file added backend/layers/Eyes Girl/Blindfold.png
Binary file added backend/layers/Eyes Girl/Blue Glasses.png
Binary file added backend/layers/Eyes Girl/Blue Sports Glasses.png
Binary file added backend/layers/Eyes Girl/Brown Blue Glazed.png
Binary file added backend/layers/Eyes Girl/Brown Bug Eyes.png
Binary file added backend/layers/Eyes Girl/Brown Gouged.png
Binary file added backend/layers/Eyes Girl/Brown Purple Glazed.png
Binary file added backend/layers/Eyes Girl/Brown Yellow Glazed.png
Binary file added backend/layers/Eyes Girl/Cyclops.png
Binary file added backend/layers/Eyes Girl/Grey Blue Glazed.png
Binary file added backend/layers/Eyes Girl/Grey Purple Glazed.png
Binary file added backend/layers/Eyes Girl/Grey Yellow Glazed.png
Binary file added backend/layers/Eyes Girl/Matrix.png
Binary file added backend/layers/Eyes Girl/Rainbow Shades.png
Binary file added backend/layers/Eyes Girl/Red Glasses.png
Binary file added backend/layers/Eyes Girl/Red Sports Glasses.png
Binary file added backend/layers/Eyes Girl/Regular Black Blue.png
Binary file added backend/layers/Eyes Girl/Regular Brown Blue.png
Binary file added backend/layers/Eyes Girl/Sad Black Blue.png
Binary file added backend/layers/Eyes Girl/Sad Black Purple.png
Binary file added backend/layers/Eyes Girl/Sad Black Yellow.png
Binary file added backend/layers/Eyes Girl/Sad Brown Blue.png
Binary file added backend/layers/Eyes Girl/Sad Brown Purple.png
Binary file added backend/layers/Eyes Girl/Sad Brown Yellow.png
Binary file added backend/layers/Eyes Whale/Aviators.png
Binary file added backend/layers/Feet Boy/Bear.png
Binary file added backend/layers/Feet Boy/Black Sneakers.png
Binary file added backend/layers/Feet Boy/Blue Sneakers.png
Binary file added backend/layers/Feet Boy/Blue Black Clown.png
Binary file added backend/layers/Feet Boy/Blue Sanic.png
Binary file added backend/layers/Feet Boy/Blue Slippers.png
Binary file added backend/layers/Feet Boy/Evil Clown.png
Binary file added backend/layers/Feet Boy/Gold Metal.png
Binary file added backend/layers/Feet Boy/Green Bear.png
Binary file added backend/layers/Feet Boy/Green Clown.png
Binary file added backend/layers/Feet Boy/Green Elf.png
Binary file added backend/layers/Feet Boy/Green Slippers.png
Binary file added backend/layers/Feet Boy/Green Sneakers.png
Binary file added backend/layers/Feet Boy/Metal.png
Binary file added backend/layers/Feet Boy/Mummy.png
Binary file added backend/layers/Feet Boy/Orange Sneakers.png
Binary file added backend/layers/Feet Boy/Pink Fuzzies.png
Binary file added backend/layers/Feet Boy/Pink Sneakers.png
Binary file added backend/layers/Feet Boy/Polar Bear.png
Binary file added backend/layers/Feet Boy/Purple Black Clown.png
Binary file added backend/layers/Feet Boy/Purple Clown.png
Binary file added backend/layers/Feet Boy/Purple Fuzzies.png
Binary file added backend/layers/Feet Boy/Red Bear.png
Binary file added backend/layers/Feet Boy/Red Elf.png
Binary file added backend/layers/Feet Boy/Red Metal.png
Binary file added backend/layers/Feet Boy/Roman Blue.png
Binary file added backend/layers/Feet Boy/Roman Purple.png
Binary file added backend/layers/Feet Boy/Roman.png
Binary file added backend/layers/Feet Boy/Sanic.png
Binary file added backend/layers/Feet Boy/Socks.png
Binary file added backend/layers/Feet Caesar/Caesar.png
Binary file added backend/layers/Feet Cyborg/Cyborg.png
Binary file added backend/layers/Feet Girl/Bear.png
Binary file added backend/layers/Feet Girl/Black Sneakers.png
Binary file added backend/layers/Feet Girl/Blue Sneakers.png
Binary file added backend/layers/Feet Girl/Blue Black Clown.png
Binary file added backend/layers/Feet Girl/Blue Sanic.png
Binary file added backend/layers/Feet Girl/Blue Slip Ons.png
Binary file added backend/layers/Feet Girl/Blue Slippers.png
Binary file added backend/layers/Feet Girl/Evil Clown.png
Binary file added backend/layers/Feet Girl/Gold Metal.png
Binary file added backend/layers/Feet Girl/Green Bear.png
Binary file added backend/layers/Feet Girl/Green Clown.png
Binary file added backend/layers/Feet Girl/Green Elf.png
Binary file added backend/layers/Feet Girl/Green Slip Ons.png
Binary file added backend/layers/Feet Girl/Green Slippers.png
Binary file added backend/layers/Feet Girl/Green Sneakers.png
Binary file added backend/layers/Feet Girl/Metal.png
Binary file added backend/layers/Feet Girl/Mummy.png
Binary file added backend/layers/Feet Girl/Orange Sneakers.png
Binary file added backend/layers/Feet Girl/Pink Fuzzies.png
Binary file added backend/layers/Feet Girl/Pink Sneakers.png
Binary file added backend/layers/Feet Girl/Polar Bear.png
Binary file added backend/layers/Feet Girl/Purple Black Clown.png
Binary file added backend/layers/Feet Girl/Purple Clown.png
Binary file added backend/layers/Feet Girl/Purple Fuzzies.png
Binary file added backend/layers/Feet Girl/Purple Slip Ons.png
Binary file added backend/layers/Feet Girl/Red Bear.png
Binary file added backend/layers/Feet Girl/Red Elf.png
Binary file added backend/layers/Feet Girl/Red Metal.png
Binary file added backend/layers/Feet Girl/Red Slip Ons.png
Binary file added backend/layers/Feet Girl/Roman Blue.png
Binary file added backend/layers/Feet Girl/Roman Purple.png
Binary file added backend/layers/Feet Girl/Roman.png
Binary file added backend/layers/Feet Girl/Sanic.png
Binary file added backend/layers/Feet Girl/Socks.png
Binary file removed backend/layers/Goo/Green#1.png
Diff not rendered.
Binary file added backend/layers/Hair Whale/Nacho Cheese.png
Binary file added backend/layers/Head Boy/Black Avax Beanie.png
Binary file added backend/layers/Head Boy/Black Bitcoin Beanie.png
Binary file added backend/layers/Head Boy/Black Sweatband.png
Binary file added backend/layers/Head Boy/Black Toupee.png
Binary file added backend/layers/Head Boy/Blue Hat.png
Binary file added backend/layers/Head Boy/Brown Toupee.png
Binary file added backend/layers/Head Boy/Cheese Rows.png
Binary file added backend/layers/Head Boy/Cheese Saiyan.png
Binary file added backend/layers/Head Boy/Crown.png
Binary file added backend/layers/Head Boy/Einstein.png
Binary file added backend/layers/Head Boy/Gold Metal.png
Binary file added backend/layers/Head Boy/Grey Toupee.png
Binary file added backend/layers/Head Boy/Halo.png
Binary file added backend/layers/Head Boy/Head of Lettuce.png
Binary file added backend/layers/Head Boy/Horns.png
Binary file added backend/layers/Head Boy/Laharl.png
Binary file added backend/layers/Head Boy/Lettuce Saiyan.png
Binary file added backend/layers/Head Boy/Metal.png
Binary file added backend/layers/Head Boy/Nacho Hat.png
Binary file added backend/layers/Head Boy/Purple Hat.png
Binary file added backend/layers/Head Boy/Purple Wen Moon.png
Binary file added backend/layers/Head Boy/Red Hat.png
Binary file added backend/layers/Head Boy/Red Metal.png
Binary file added backend/layers/Head Boy/Red Wen Moon.png
Binary file added backend/layers/Head Boy/Roman.png
Binary file added backend/layers/Head Boy/Spiked Lettuce.png
Binary file added backend/layers/Head Boy/Third Eye.png
Binary file added backend/layers/Head Boy/Timmy Hitfinger.png
Binary file added backend/layers/Head Boy/White Avax Beanie.png
Binary file added backend/layers/Head Boy/White Beanie.png
Binary file added backend/layers/Head Boy/White Bitcoin Beanie.png
Binary file added backend/layers/Head Boy/Xtra Cheese.png
Binary file added backend/layers/Head Boy/Xtra Lettuce.png
Binary file added backend/layers/Head Caesar/Caesar.png
Binary file added backend/layers/Head Cyborg/Cyborg.png
Binary file added backend/layers/Head Girl/Black Avax Beanie.png
Binary file added backend/layers/Head Girl/Black Sweatband.png
Binary file added backend/layers/Head Girl/Blue Hat.png
Binary file added backend/layers/Head Girl/Cheese Rows.png
Binary file added backend/layers/Head Girl/Cheese Saiyan.png
Binary file added backend/layers/Head Girl/Crown.png
Binary file added backend/layers/Head Girl/Gold Metal.png
Binary file added backend/layers/Head Girl/Halo.png
Binary file added backend/layers/Head Girl/Head of Lettuce.png
Binary file added backend/layers/Head Girl/Horns.png
Binary file added backend/layers/Head Girl/Laharl.png
Binary file added backend/layers/Head Girl/Lettuce Saiyan.png
Loading