Update Right Coin

master
Fabien Freling 2019-10-28 14:59:32 +01:00
parent 113d753452
commit 9b969753a9
2 changed files with 35 additions and 3 deletions

View File

@ -1,3 +1,7 @@
:root {
--code-color: #eee8d5; /* gray (base2) */
}
body {
max-width: 800px;
font-family: sans-serif;
@ -50,15 +54,29 @@ div#navigation a {
}
p.date {
background-color: #eee8d5; /* base2 */
background-color: var(--code-color);
padding: 10px 10px 10px 10px;
}
p.repository {
background-color: #eee8d5; /* base2 */
background-color: var(--code-color);
padding: 10px 10px 10px 10px;
}
pre {
background-color: var(--code-color);
padding: 10px 10px 10px 10px;
font-size: 11pt;
}
blockquote {
padding: 10px 10px 10px 10px;
}
code {
background-color: var(--code-color);
}
ul.projects {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

View File

@ -7,4 +7,18 @@ dev: tic-80, lua
The Right Coin was our submission with [Pascal
Batty](https://twitter.com/scalbatty/) for the [Ludum Dare
44](https://ldjam.com/events/ludum-dare/44) game jam.
44](https://ldjam.com/events/ludum-dare/44) game jam. The theme of the game jam
was: "your life is currency".
We decided to keep things simple and started with a platformer with a twist.
```
You're dying, and medicine ain't cheap.
Collect coins and buy medicine to extend your lifespan. Be careful of the
current market values of your coins to optimize how much you can buy with what
you have.
```
The game is available on
[itch.io](https://damantisshrimp.itch.io/the-right-coin).