This commit is contained in:
Lah Shrimp 2026-03-04 19:33:34 -07:00
parent dfcab34491
commit d003913ce7
2 changed files with 17 additions and 12 deletions

View File

@ -1,15 +1,15 @@
export const projects = {
"biotama":{
content:
`Biotama is a game where players attempt to convert wastelands into thriving ecosystems.<br/>
The player starts with a "Mother Tree"
`<p><span class="bold">Biotama</span> is a game where players attempt to convert wastelands into thriving ecosystems.</p>
<p>The player starts with a "Mother Tree"
which acts as the core component of the player's ecosystem.
Trees grow roots that can connect together,
allowing them to communicate and send resources between each other.
Mycelial networks function similarly for fungi. <br/>
Biotama aims to be educational as well as fun.
Mycelial networks function similarly for fungi. </p>
<p>Biotama aims to be educational as well as fun.
It will feature real-world species with tooltips showing fun facts about those species.
We are consulting with experts in biology where necessary to ensure accuracy to the real world.
We are consulting with experts in biology where necessary to ensure accuracy to the real world.</p>
`,
images: {
left: {src:"biotama2.png",alt:"mother tree with a river and cliffs in the background"},
@ -18,11 +18,11 @@ export const projects = {
},
},
"htp":{
content: `A game by Shrimp Squad Studios made for the Epic MegaJam!
One week to make a game and this is what we made! A game based on the movie Hackers.<br/>
Your goal is to hack the Gibson computer and collect the garbage file.
Which will then in turn let you HACK THE PLANET! <br/>
<a href='https://megsum.itch.io/hack-the-planet'> Try it out!</a>`,
content: `<p>A game by Shrimp Squad Studios made for the Epic MegaJam!</p>
<p>One week to make a game and this is what we made! A game based on the movie Hackers.</p>
<p>Your goal is to hack the Gibson computer and collect the garbage file.
Which will then in turn let you <span class="bold">HACK THE PLANET!</span> </p>
<a class='htp-cta' href='https://megsum.itch.io/hack-the-planet'> Try it out!</a>`,
images: {
left: {src:"htp1.png",alt:"visual puzzle with different colours"},
right: {src:"htp2.png",alt:"the player character standing surrounded by various text characters"},

View File

@ -68,9 +68,10 @@ body {
display: flex;
gap: 20px;
justify-content: space-evenly;
border-image: url("./assets/waves-border.png") 27 fill / 15px / 15px 0 0 0 round;
border-image: url("./assets/waves-border.png") 27 fill / 35px / 25px 0 0 0 round;
position:relative;
color: var(--tangerine-dream-shrimp);
font-size: 24px;
}
#shrimp-project-content {
@ -124,3 +125,7 @@ body {
width: 100%;
}
}
.bold {
font-weight: bold;
}