For DS(i) Mode Hacking

This commit is contained in:
Lillian Skinner 2024-02-26 19:50:50 -05:00 committed by GitHub
parent 9ad0ba830a
commit 567f858279
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

110
shantae.html Normal file
View File

@ -0,0 +1,110 @@
<!DOCTYPE html>
<html>
<head>
<meta name="robots" content="noindex">
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=0.75">
<style>
@font-face {
font-family: dsifont;
src: url(https://randommeaninglesscharacters.com/assets/font/nintendo_NTLGDB_001.ttf);
}
body {
color: white;
font-family: dsifont;
background-color: #ff4d4d;
background-image: linear-gradient(to bottom left, #ff0000, #330000);
background-size: cover;
background-repeat: no-repeat;
display: grid;
grid-auto-flow: row;
justify-items: center;
}
box {
padding: 10px;
border: 2px solid #cca300;
border-radius: 10px;
}
#title {
margin: 15px;
background-color: #ff3300;
}
#main {
margin: 30px;
background-color: #991f00;
}
.button {
background-color: #008ae6;
border: none;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 30px;
margin: 4px 2px;
cursor: pointer;
border-radius: 28px;
transition: 0.25s;
}
.button:hover {
background-color: #FFFFFF;
color: black;
}
a {
color: #4da6ff;
}
.screenshot {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
padding-bottom: 20px;
}
.screenshot img {
width: 100%;
max-width: 256px;
height: auto;
border: 5px solid white;
box-shadow: 0px 0px 2px 5px rgb(217, 217, 217, 1);
align-self: center;
}
</style>
</head>
<body>
<box id="title">
<h2>Help obtain prototype builds of a Shantae game!</h2>
</box>
<div>
<a href="https://www.paypal.com/paypalme/rvtrx1"><button class="button">PayPal!</button></a>
<a href="https://ko-fi.com/rvtrx1"><button class="button">Ko-fi!</button></a>
</div>
<box id="main">
<p> MaxiBash and <a href="https://randommeaninglesscharacters.com">rmc</a> just hosted a fundraiser to pay someone $750 USD for the release of <b><i>12 builds Shantae Risky's Revenge</b></i>. The fundraiser was a success and we have uploaded all the builds on the Internet Archive (you will have to find these yourself).
<br>
<h2>However, this isn't the end!</h2>
The seller has offered <b><i>~20 additional builds for an extra $500 ($1250 total)</i></b>.</p> We still need your help to preserve the final batch of Shantae prototypes!<br><br>
Here is some of what we've preserved with your support so far:</p>
<div class="screenshot">
<img src="https://cdn.randommeaninglesscharacters.com/releases/shantae/fundraise/photo5.png">
<img src="https://cdn.randommeaninglesscharacters.com/releases/shantae/fundraise/photo6.png">
<img src="https://cdn.randommeaninglesscharacters.com/releases/shantae/fundraise/photo7.png">
<img src="https://cdn.randommeaninglesscharacters.com/releases/shantae/fundraise/photo8.png">
</div>
<p>In the event that the fundraiser fails for any reason, we will return the money to the backers at our expense; we've calculated the approximate cost of doing so and determined that we can cover it.</p>
<p>Questions can be posted in the Rare Gaming Dump <a href="https://discord.gg/7yEJw8SuBn">Discord server</a>; we will also provide regular updates of the amount of money collected there.</p>
<p>You can donate via PayPal here: <a href="https://www.paypal.com/paypalme/rvtrx1">https://www.paypal.com/paypalme/rvtrx1</a><br>
We also accept donations through Ko-fi: <a href="https://ko-fi.com/rvtrx1">https://ko-fi.com/rvtrx1</a></p>
<p>Any amount helps, so please feel free to spread this around!</p>
</box>
</body>
</html>