<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://dev.shrimpsquad.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Blippy</id>
	<title>Shrimp Squad - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://dev.shrimpsquad.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Blippy"/>
	<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php/Special:Contributions/Blippy"/>
	<updated>2026-04-19T14:37:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=MediaWiki:Common.js&amp;diff=170</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=MediaWiki:Common.js&amp;diff=170"/>
		<updated>2026-03-30T17:50:51Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Replaced content with &amp;quot;/* Any JavaScript here will be loaded for all users on every page load. */&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=MediaWiki:Common.js&amp;diff=169</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=MediaWiki:Common.js&amp;diff=169"/>
		<updated>2026-03-30T17:42:06Z</updated>

		<summary type="html">&lt;p&gt;Blippy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, () =&amp;gt; {&lt;br /&gt;
  const table = document.querySelector(&amp;quot;.wikitable.sortable&amp;quot;);&lt;br /&gt;
  if (!table) return;&lt;br /&gt;
&lt;br /&gt;
  const tbody = table.querySelector(&amp;quot;tbody&amp;quot;);&lt;br /&gt;
  if (!tbody) return;&lt;br /&gt;
&lt;br /&gt;
  const rows = Array.from(tbody.querySelectorAll(&amp;quot;tr&amp;quot;)).slice(1); // skip header&lt;br /&gt;
&lt;br /&gt;
  // Fisher–Yates shuffle&lt;br /&gt;
  for (let i = rows.length - 1; i &amp;gt; 0; i--) {&lt;br /&gt;
    const j = Math.floor(Math.random() * (i + 1));&lt;br /&gt;
    [rows[i], rows[j]] = [rows[j], rows[i]];&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  // Re-append in shuffled order&lt;br /&gt;
  rows.forEach(row =&amp;gt; tbody.appendChild(row));&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, () =&amp;gt; {&lt;br /&gt;
  const table = document.querySelector(&amp;quot;.wikitable.sortable&amp;quot;);&lt;br /&gt;
  if (!table) return;&lt;br /&gt;
&lt;br /&gt;
  const tbody = table.querySelector(&amp;quot;tbody&amp;quot;);&lt;br /&gt;
  const rows = Array.from(tbody.querySelectorAll(&amp;quot;tr&amp;quot;)).slice(1);&lt;br /&gt;
&lt;br /&gt;
  // Create button&lt;br /&gt;
  const button = document.createElement(&amp;quot;button&amp;quot;);&lt;br /&gt;
  button.textContent = &amp;quot;🎲 Pick Random Game&amp;quot;;&lt;br /&gt;
  button.style.marginBottom = &amp;quot;10px&amp;quot;;&lt;br /&gt;
  button.style.padding = &amp;quot;8px 12px&amp;quot;;&lt;br /&gt;
  button.style.cursor = &amp;quot;pointer&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
  table.parentNode.insertBefore(button, table);&lt;br /&gt;
&lt;br /&gt;
  button.addEventListener(&amp;quot;click&amp;quot;, () =&amp;gt; {&lt;br /&gt;
    // Clear previous highlights&lt;br /&gt;
    rows.forEach(r =&amp;gt; r.style.background = &amp;quot;&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
    const randomRow = rows[Math.floor(Math.random() * rows.length)];&lt;br /&gt;
&lt;br /&gt;
    // Highlight it&lt;br /&gt;
    randomRow.style.background = &amp;quot;#d4edda&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
    // Scroll into view&lt;br /&gt;
    randomRow.scrollIntoView({ behavior: &amp;quot;smooth&amp;quot;, block: &amp;quot;center&amp;quot; });&lt;br /&gt;
  });&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=MediaWiki:Common.js&amp;diff=168</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=MediaWiki:Common.js&amp;diff=168"/>
		<updated>2026-03-30T17:41:26Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Created page with &amp;quot;/* Any JavaScript here will be loaded for all users on every page load. */ document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, () =&amp;gt; {   const table = document.querySelector(&amp;quot;.wikitable.sortable&amp;quot;);   if (!table) return;    const tbody = table.querySelector(&amp;quot;tbody&amp;quot;);   if (!tbody) return;    const rows = Array.from(tbody.querySelectorAll(&amp;quot;tr&amp;quot;)).slice(1); // skip header    // Fisher–Yates shuffle   for (let i = rows.length - 1; i &amp;gt; 0; i--) {     const j = Math.floor(Math.rando...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, () =&amp;gt; {&lt;br /&gt;
  const table = document.querySelector(&amp;quot;.wikitable.sortable&amp;quot;);&lt;br /&gt;
  if (!table) return;&lt;br /&gt;
&lt;br /&gt;
  const tbody = table.querySelector(&amp;quot;tbody&amp;quot;);&lt;br /&gt;
  if (!tbody) return;&lt;br /&gt;
&lt;br /&gt;
  const rows = Array.from(tbody.querySelectorAll(&amp;quot;tr&amp;quot;)).slice(1); // skip header&lt;br /&gt;
&lt;br /&gt;
  // Fisher–Yates shuffle&lt;br /&gt;
  for (let i = rows.length - 1; i &amp;gt; 0; i--) {&lt;br /&gt;
    const j = Math.floor(Math.random() * (i + 1));&lt;br /&gt;
    [rows[i], rows[j]] = [rows[j], rows[i]];&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  // Re-append in shuffled order&lt;br /&gt;
  rows.forEach(row =&amp;gt; tbody.appendChild(row));&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=167</id>
		<title>Lunch Games</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=167"/>
		<updated>2026-03-30T17:22:58Z</updated>

		<summary type="html">&lt;p&gt;Blippy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often play lunch games, but have trouble deciding as we can never remember which ones we commonly play.&lt;br /&gt;
&lt;br /&gt;
This is a list we can keep updated and refer to whenever we&#039;re indecisive!&lt;br /&gt;
&lt;br /&gt;
== Steam ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;200&amp;quot; | Image &lt;br /&gt;
! Steam Link &lt;br /&gt;
! Min Players&lt;br /&gt;
! Max Players&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:4D Golf.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2147950/4D_Golf/ 4D Golf]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Ale &amp;amp; Tale Tavern.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2683150/Ale__Tale_Tavern/ Ale &amp;amp; Tale Tavern]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Among Us.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/945360/Among_Us/ Among Us]&lt;br /&gt;
|4&lt;br /&gt;
|15&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Apex Legends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172470/Apex_Legends/ Apex Legends]&lt;br /&gt;
|1&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Astroneer.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/361420/ASTRONEER/ Astroneer]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Backrooms Escape Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2141730/Backrooms_Escape_Together/ Backrooms:Escape Together]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Baldur&#039;s Gate 3.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1086940/Baldurs_Gate_3/ Baldur&#039;s Gate 3]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:BAPBAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2226280/BAPBAP/ BAPBAP]&lt;br /&gt;
|2&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Car Service Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3501070/Car_Service_Together/ Car Service Together]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Chivalry 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1824220/Chivalry_2/ Chivalry 2]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization V.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization V]&lt;br /&gt;
|1&lt;br /&gt;
|22&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization VI.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization VI]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:ContractVille.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2698780/ContractVille/ Contractville]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crashout Crew.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3583210/Crashout_Crew/ Crashout Crew]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crusader Kings III.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1158310/Crusader_Kings_III/ Crusader Kings III]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Deep Rock Galactic.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/548430/Deep_Rock_Galactic/ Deep Rock Galactic]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Don&#039;t Starve Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/322330/Dont_Starve_Together/ Don&#039;t Starve Together]&lt;br /&gt;
|1&lt;br /&gt;
|16*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Factorio.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/427520/Factorio/ Factorio]&lt;br /&gt;
|1&lt;br /&gt;
|65,535&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fall Guys.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1097150/Fall_Guys/ Fall Guys] (now only buyable on Epic Store)&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fast Food Simulator.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2916430/Fast_Food_Simulator/ Fast Food Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Golf With Your Friends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/431240/Golf_With_Your_Friends/ Golf With Your Friends]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Garry&#039;s Mod.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/4000/Garrys_Mod/ Garry&#039;s Mod]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Green Hell.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/815370/Green_Hell/ Green Hell]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Infinite.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1240440/Halo_Infinite/ Halo Infinite]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Master Chief Collection.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/976730/Halo_The_Master_Chief_Collection/ Halo: The Master Chief Collection]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:HELLDIVERS 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/553850/HELLDIVERS_2/ HELLDIVERS 2]&lt;br /&gt;
|3&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jackbox Megapicker.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2828500/The_Jackbox_Megapicker/ The Jackbox Megapicker]&lt;br /&gt;
|2&lt;br /&gt;
|100&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jump Space.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1757300/Jump_Space/ Jump Space]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Kebab Chefs.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1001270/Kebab_Chefs__Restaurant_Simulator/ Kebab Chefs! - Restaurant Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Keep Talking and Nobody Explodes.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/341800/Keep_Talking_and_Nobody_Explodes/ Keep Talking and Nobody Explodes]&lt;br /&gt;
|2&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lethal Company.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1966720/Lethal_Company/ Lethal Company]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:NERTS.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1131190/NERTS_Online/ NERTS! Online]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:No Man&#039;s Sky.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/275850/No_Mans_Sky/ No Man&#039;s Sky]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PEAK Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3527290/PEAK/ PEAK]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Phasmophobia.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/739630/Phasmophobia/ Phasmophobia]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PlateUp!.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1599600/PlateUp/ PlateUp!]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Raft Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/648800/Raft/ Raft]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rust.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/252490/Rust/ Rust]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:RV There Yet.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3949040/RV_There_Yet/ RV There Yet]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Satisfactory.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/526870/Satisfactory/ Satisfactory]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Sea of Thieves.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172620/Sea_of_Thieves_2025_Edition/ Sea of Thieves: 2025 Edition]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Space Engineers.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/244850/Space_Engineers/ Space Engineers]&lt;br /&gt;
|1&lt;br /&gt;
|16&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Stardew Valley.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/413150/Stardew_Valley/ Stardew Valley]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Star Wars Battlefront II.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1237950/STAR_WARS_Battlefront_II/ STAR WARS Battlefront II]&lt;br /&gt;
|1&lt;br /&gt;
|20&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tabletop Simulator.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/286160/Tabletop_Simulator/ Tabletop Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|10&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Terraria Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/105600/Terraria/ Terraria]&lt;br /&gt;
|1&lt;br /&gt;
|16&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:THE FINALS.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2073850/THE_FINALS/ THE FINALS]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:The Planet Crafter.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1284190/The_Planet_Crafter/ The Planet Crafter]&lt;br /&gt;
|1&lt;br /&gt;
|10&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tropico 6.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/492720/Tropico_6/ Tropico 6]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Valheim.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/892970/Valheim/ Valheim]&lt;br /&gt;
|1&lt;br /&gt;
|10*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:V Rising.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1604030/V_Rising/ V Rising]&lt;br /&gt;
|1&lt;br /&gt;
|128&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Wingspan Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1054490/Wingspan/ Wingspan]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:YAPYAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3834090/YAPYAP/ YAPYAP]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&#039;&#039;Player max count can be increased with mods&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Epic Games Launcher ==&lt;br /&gt;
* Chivalry II&lt;br /&gt;
* Fall Guys&lt;br /&gt;
* GTA V&lt;br /&gt;
&lt;br /&gt;
== Others ==&lt;br /&gt;
* Minecraft&lt;br /&gt;
* StarCraft II&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=166</id>
		<title>Biotama/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=166"/>
		<updated>2026-03-29T20:40:55Z</updated>

		<summary type="html">&lt;p&gt;Blippy: /* Environment Setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
This page has instructions for getting set up on Project &#039;&#039;[[Biotama]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== As a player ==&lt;br /&gt;
To try out &#039;&#039;Biotama&#039;&#039;, you can just download and run the latest stable build [[Biotama/Latest|here]]. Currently, packaged builds only support Windows. We would like to add support for Linux and macOS in the future.&lt;br /&gt;
&lt;br /&gt;
== As a developer ==&lt;br /&gt;
If you would like to contribute to &#039;&#039;Biotama&#039;&#039; as a developer, you will need access to our [https://github.com/ShrimpSquadStudios/Biotama GitHub repository]. You can contact one of our existing developers to request access via the [https://discord.gg/RVhc27mbAc Shrimp Squad Discord server].&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* A computer with Windows 10 or 11 that meets the [https://dev.epicgames.com/documentation/en-us/unreal-engine/hardware-and-software-specifications-for-unreal-engine minimum specifications for Unreal Engine 5]&lt;br /&gt;
* A GitHub account with access to the &#039;&#039;Biotama&#039;&#039; repository&lt;br /&gt;
* An Epic Games account&lt;br /&gt;
&lt;br /&gt;
=== Environment Setup ===&lt;br /&gt;
Once you have access, you can clone the repository locally and compile the project with the steps below. If you run into any issues, contact &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
# Download and install the [https://store.epicgames.com/en-US/download Epic Games Launcher].&lt;br /&gt;
# Download and install the latest version of Unreal Engine 5 through the launcher.&lt;br /&gt;
# Download and install [https://www.jetbrains.com/rider/download/ Rider]. &lt;br /&gt;
# Download and install [https://git-scm.com/install/windows Git]. Unless you&#039;re comfortable with Git command-line, we also recommend installing a frontend like [https://gitextensions.github.io/ Git Extensions] or [https://desktop.github.com/download/ GitHub Desktop]. &lt;br /&gt;
# Sync the project from GitHub (https://github.com/ShrimpSquadStudios/Biotama.git).&lt;br /&gt;
# In the downloaded project files, right-click `Biotama.uproject` and choose &#039;&#039;&#039;Generate Visual Studio Project Files&#039;&#039;&#039;.&lt;br /&gt;
# Open the .uproject in Rider, and click the green triangle to build and run the project.&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File_talk:Borg.jpeg&amp;diff=165</id>
		<title>File talk:Borg.jpeg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File_talk:Borg.jpeg&amp;diff=165"/>
		<updated>2026-03-27T01:03:21Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Created page with &amp;quot;39 megapixels. borger !!!! ~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;39 megapixels. borger&lt;br /&gt;
!!!!&lt;br /&gt;
[[User:Blippy|Blippy]] ([[User talk:Blippy|talk]]) 01:03, 27 March 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Borg.jpeg&amp;diff=164</id>
		<title>File:Borg.jpeg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Borg.jpeg&amp;diff=164"/>
		<updated>2026-03-27T01:02:21Z</updated>

		<summary type="html">&lt;p&gt;Blippy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=163</id>
		<title>Biotama/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=163"/>
		<updated>2026-03-24T22:27:53Z</updated>

		<summary type="html">&lt;p&gt;Blippy: remove extra apostrophe&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
This page has instructions for getting set up on Project &#039;&#039;[[Biotama]]&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== As a player ==&lt;br /&gt;
To try out &#039;&#039;Biotama&#039;&#039;, you can just download and run the latest stable build [[Biotama/Latest|here]]. Currently, packaged builds only support Windows. We would like to add support for Linux and macOS in the future.&lt;br /&gt;
&lt;br /&gt;
== As a developer ==&lt;br /&gt;
If you would like to contribute to &#039;&#039;Biotama&#039;&#039; as a developer, you will need access to our [https://github.com/ShrimpSquadStudios/Biotama GitHub repository]. You can contact one of our existing developers to request access via the [https://discord.gg/RVhc27mbAc Shrimp Squad Discord server].&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* A computer with Windows 10 or 11 that meets the [https://dev.epicgames.com/documentation/en-us/unreal-engine/hardware-and-software-specifications-for-unreal-engine minimum specifications for Unreal Engine 5]&lt;br /&gt;
* A GitHub account with access to the &#039;&#039;Biotama&#039;&#039; repository&lt;br /&gt;
* An Epic Games account&lt;br /&gt;
&lt;br /&gt;
=== Environment Setup ===&lt;br /&gt;
Once you have access, you can clone the repository locally and compile the project with the steps below. If you run into any issues, contact &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
# Download and install the [Epic Games Launcher](https://store.epicgames.com/en-US/download).&lt;br /&gt;
# Download and install the latest version of Unreal Engine 5 through the launcher.&lt;br /&gt;
# Download and install [https://www.jetbrains.com/rider/download/ Rider]. &lt;br /&gt;
# Download and install [https://git-scm.com/install/windows Git]. Unless you&#039;re comfortable with Git command-line, we also recommend installing a frontend like [https://gitextensions.github.io/ Git Extensions] or [https://desktop.github.com/download/ GitHub Desktop]. &lt;br /&gt;
# Sync the project from GitHub (https://github.com/ShrimpSquadStudios/Biotama.git).&lt;br /&gt;
# In the downloaded project files, right-click `Biotama.uproject` and choose &#039;&#039;&#039;Generate Visual Studio Project Files&#039;&#039;&#039;.&lt;br /&gt;
# Open the .uproject in Rider, and click the green triangle to build and run the project.&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=162</id>
		<title>Biotama</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=162"/>
		<updated>2026-03-24T17:18:50Z</updated>

		<summary type="html">&lt;p&gt;Blippy: add link to Getting Started page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
This the main index page for Project &#039;&#039;&#039;Biotama&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
You can download the latest stable build [[Biotama/Latest|here]].&lt;br /&gt;
== Main pages ==&lt;br /&gt;
* [[Biotama/Getting_Started|Getting Started page]]&lt;br /&gt;
* [[Biotama/GDD|Game Design Document]]&lt;br /&gt;
* [[Biotama/Builds|Packaged Builds]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=161</id>
		<title>Biotama/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=161"/>
		<updated>2026-03-24T17:18:14Z</updated>

		<summary type="html">&lt;p&gt;Blippy: more formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
This page has instructions for getting set up on Project &#039;&#039;[[Biotama]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== As a player ==&lt;br /&gt;
To try out &#039;&#039;Biotama&#039;&#039;, you can just download and run the latest stable build [[Biotama/Latest|here]]. Currently, packaged builds only support Windows. We would like to add support for Linux and macOS in the future.&lt;br /&gt;
&lt;br /&gt;
== As a developer ==&lt;br /&gt;
If you would like to contribute to &#039;&#039;Biotama&#039;&#039; as a developer, you will need access to our [https://github.com/ShrimpSquadStudios/Biotama GitHub repository]. You can contact one of our existing developers to request access via the [https://discord.gg/RVhc27mbAc Shrimp Squad Discord server].&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* A computer with Windows 10 or 11 that meets the [https://dev.epicgames.com/documentation/en-us/unreal-engine/hardware-and-software-specifications-for-unreal-engine minimum specifications for Unreal Engine 5]&lt;br /&gt;
* A GitHub account with access to the &#039;&#039;Biotama&#039;&#039; repository&lt;br /&gt;
* An Epic Games account&lt;br /&gt;
&lt;br /&gt;
=== Environment Setup ===&lt;br /&gt;
Once you have access, you can clone the repository locally and compile the project with the steps below. If you run into any issues, contact &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
# Download and install the [Epic Games Launcher](https://store.epicgames.com/en-US/download).&lt;br /&gt;
# Download and install the latest version of Unreal Engine 5 through the launcher.&lt;br /&gt;
# Download and install [https://www.jetbrains.com/rider/download/ Rider]. &lt;br /&gt;
# Download and install [https://git-scm.com/install/windows Git]. Unless you&#039;re comfortable with Git command-line, we also recommend installing a frontend like [https://gitextensions.github.io/ Git Extensions] or [https://desktop.github.com/download/ GitHub Desktop]. &lt;br /&gt;
# Sync the project from GitHub (https://github.com/ShrimpSquadStudios/Biotama.git).&lt;br /&gt;
# In the downloaded project files, right-click `Biotama.uproject` and choose &#039;&#039;&#039;Generate Visual Studio Project Files&#039;&#039;&#039;.&lt;br /&gt;
# Open the .uproject in Rider, and click the green triangle to build and run the project.&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=160</id>
		<title>Biotama/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=160"/>
		<updated>2026-03-24T17:17:55Z</updated>

		<summary type="html">&lt;p&gt;Blippy: fixing formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
This page has instructions for getting set up on Project &#039;&#039;[[Biotama]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== As a player ==&lt;br /&gt;
To try out &#039;&#039;Biotama&#039;&#039;, you can just download and run the latest stable build [[Biotama/Latest|here]]. Currently, packaged builds only support Windows. We would like to add support for Linux and macOS in the future.&lt;br /&gt;
&lt;br /&gt;
== As a developer ==&lt;br /&gt;
If you would like to contribute to &#039;&#039;Biotama&#039;&#039; as a developer, you will need access to our [https://github.com/ShrimpSquadStudios/Biotama GitHub repository]. You can contact one of our existing developers to request access via the [https://discord.gg/RVhc27mbAc Shrimp Squad Discord server].&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* A computer with Windows 10 or 11 that meets the [https://dev.epicgames.com/documentation/en-us/unreal-engine/hardware-and-software-specifications-for-unreal-engine minimum specifications for Unreal Engine 5]&lt;br /&gt;
* A GitHub account with access to the &#039;&#039;Biotama&#039;&#039; repository&lt;br /&gt;
* An Epic Games account&lt;br /&gt;
&lt;br /&gt;
=== Environment Setup ===&lt;br /&gt;
Once you have access, you can clone the repository locally and compile the project with the steps below. If you run into any issues, contact &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
# Download and install the [Epic Games Launcher](https://store.epicgames.com/en-US/download).&lt;br /&gt;
# Download and install the latest version of Unreal Engine 5 through the launcher.&lt;br /&gt;
# Download and install [https://www.jetbrains.com/rider/download/ Rider]. &lt;br /&gt;
# Download and install [https://git-scm.com/install/windows Git]. Unless you&#039;re comfortable with Git command-line, we also recommend installing a frontend like [https://gitextensions.github.io/ Git Extensions] or [https://desktop.github.com/download/ GitHub Desktop]. &lt;br /&gt;
# Sync the project from GitHub (https://github.com/ShrimpSquadStudios/Biotama.git).&lt;br /&gt;
# In the downloaded project files, right-click `Biotama.uproject` and choose **Generate Visual Studio Project Files**.&lt;br /&gt;
# Open the .uproject in Rider, and click the green triangle to build and run the project.&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=159</id>
		<title>Biotama/Getting Started</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Getting_Started&amp;diff=159"/>
		<updated>2026-03-24T17:16:45Z</updated>

		<summary type="html">&lt;p&gt;Blippy: creating page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
This page has instructions for getting set up on Project &#039;&#039;[[Biotama]]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== As a player ==&lt;br /&gt;
To try out &#039;&#039;Biotama&#039;&#039;, you can just download and run the latest stable build [[Biotama/Latest|here]]. Currently, packaged builds only support Windows. We would like to add support for Linux and macOS in the future.&lt;br /&gt;
&lt;br /&gt;
== As a developer ==&lt;br /&gt;
If you would like to contribute to &#039;&#039;Biotama&#039;&#039; as a developer, you will need access to our [https://github.com/ShrimpSquadStudios/Biotama GitHub repository]. You can contact one of our existing developers to request access via the [https://discord.gg/RVhc27mbAc Shrimp Squad Discord server].&lt;br /&gt;
&lt;br /&gt;
=== Prerequisites ===&lt;br /&gt;
* A computer with Windows 10 or 11 that meets the [https://dev.epicgames.com/documentation/en-us/unreal-engine/hardware-and-software-specifications-for-unreal-engine minimum specifications for Unreal Engine 5]&lt;br /&gt;
* A GitHub account with access to the &#039;&#039;Biotama&#039;&#039; repository&lt;br /&gt;
* An Epic Games account&lt;br /&gt;
&lt;br /&gt;
=== Environment Setup ===&lt;br /&gt;
Once you have access, you can clone the repository locally and compile the project with the steps below. If you run into any issues, contact &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
# Download and install the [Epic Games Launcher](https://store.epicgames.com/en-US/download).&lt;br /&gt;
# Download and install the latest version of Unreal Engine 5 through the launcher.&lt;br /&gt;
# Download and install [Rider](https://www.jetbrains.com/rider/download/). &lt;br /&gt;
# Download and install [Git](https://git-scm.com/install/windows). Unless you&#039;re comfortable with Git command-line, we also recommend installing a frontend like [Git Extensions](https://gitextensions.github.io/) or [GitHub Desktop](https://desktop.github.com/download/). &lt;br /&gt;
# Sync the project from GitHub (https://github.com/ShrimpSquadStudios/Biotama.git).&lt;br /&gt;
# In the downloaded project files, right-click `Biotama.uproject` and choose **Generate Visual Studio Project Files**.&lt;br /&gt;
# Open the .uproject in Rider, and click the green triangle to build and run the project.&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Latest&amp;diff=158</id>
		<title>Biotama/Latest</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Latest&amp;diff=158"/>
		<updated>2026-03-24T17:01:29Z</updated>

		<summary type="html">&lt;p&gt;Blippy: fix redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[File:2026-03-21-1205.zip]]&lt;br /&gt;
[[Category:Biotama]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=157</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=157"/>
		<updated>2026-03-21T23:11:55Z</updated>

		<summary type="html">&lt;p&gt;Blippy: /* External Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the development wiki for Shrimp Squad Inc&lt;br /&gt;
&lt;br /&gt;
This wiki is read-only by default. If you would like to make edits, request an account by contacting &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
== List of projects ==&lt;br /&gt;
* [[Biotama]]&lt;br /&gt;
* [[Hack the Planet]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [https://shrimpsquad.ca/ Shrimp Squad official site]&lt;br /&gt;
* [https://discord.gg/RVhc27mbAc Shrimp Squad Discord]&lt;br /&gt;
* [https://github.com/ShrimpSquadStudios Shrimp Squad GitHub page]&lt;br /&gt;
* [https://www.linkedin.com/company/112423389/ Shrimp Squad LinkedIn page]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=156</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=156"/>
		<updated>2026-03-21T19:49:07Z</updated>

		<summary type="html">&lt;p&gt;Blippy: /* External Links */ + discord invite&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the development wiki for Shrimp Squad Inc&lt;br /&gt;
&lt;br /&gt;
This wiki is read-only by default. If you would like to make edits, request an account by contacting &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
== List of projects ==&lt;br /&gt;
* [[Biotama]]&lt;br /&gt;
* [[Hack the Planet]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [https://shrimpsquad.ca/ Shrimp Squad official site]&lt;br /&gt;
* [https://discord.gg/RVhc27mbAc Shrimp Squad Discord]&lt;br /&gt;
* [https://www.linkedin.com/company/112423389/ Shrimp Squad LinkedIn page]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Category:Hack_the_Planet&amp;diff=155</id>
		<title>Category:Hack the Planet</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Category:Hack_the_Planet&amp;diff=155"/>
		<updated>2026-03-21T19:47:00Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Created page with &amp;quot;Pages related to the Hack the Planet game jam.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pages related to the [[Hack the Planet]] game jam.&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Latest&amp;diff=154</id>
		<title>Biotama/Latest</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Latest&amp;diff=154"/>
		<updated>2026-03-21T19:46:10Z</updated>

		<summary type="html">&lt;p&gt;Blippy: +:Category:Biotama&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
#REDIRECT [[File:2026-03-21-1205.zip]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Builds&amp;diff=153</id>
		<title>Biotama/Builds</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Builds&amp;diff=153"/>
		<updated>2026-03-21T19:45:44Z</updated>

		<summary type="html">&lt;p&gt;Blippy: +:Category:Biotama&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
=Builds=&lt;br /&gt;
==Latest Stable==&lt;br /&gt;
===Windows===&lt;br /&gt;
*[[File:2026-03-21-1205.zip]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=152</id>
		<title>Biotama</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=152"/>
		<updated>2026-03-21T19:45:10Z</updated>

		<summary type="html">&lt;p&gt;Blippy: +:Category:Biotama&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
This the main index page for Project &#039;&#039;&#039;Biotama&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
You can download the latest stable build [[Biotama/Latest|here]].&lt;br /&gt;
== Main pages ==&lt;br /&gt;
* [[Biotama/GDD|Game Design Document]]&lt;br /&gt;
* [[Biotama/Builds|Packaged Builds]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Hack_the_Planet&amp;diff=151</id>
		<title>Hack the Planet</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Hack_the_Planet&amp;diff=151"/>
		<updated>2026-03-21T19:43:51Z</updated>

		<summary type="html">&lt;p&gt;Blippy: creating page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hack the Planet]]&lt;br /&gt;
[[Image:Hack the Planet Screenshot 1.png|thumb|200px|right|A player standing inside the computer]]&lt;br /&gt;
&#039;&#039;&#039;Hack the Planet&#039;&#039;&#039; is a small multiplayer project created by Shrimp Squad as a game jam (the Epic MegaJam) over the course of three days.&lt;br /&gt;
&lt;br /&gt;
More information and a link to try it out are on [https://megsum.itch.io/hack-the-planet itch.io.]&lt;br /&gt;
&lt;br /&gt;
== Gallery ==&lt;br /&gt;
&amp;lt;gallery mode=nolines&amp;gt;&lt;br /&gt;
Hack the Planet Screenshot 2.png|The Cat RGB puzzle&lt;br /&gt;
Hack the Planet Screenshot 4.png|The Space RGB puzzle&lt;br /&gt;
Hack the Planet Screenshot 3.png|Hacker view for cameras&lt;br /&gt;
Hack the Planet Screenshot 5.png|Hacker view for the Cat RGB puzzle&lt;br /&gt;
Hack the Planet Screenshot 6.png|Hacker view for the Space RGB puzzle&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_5.png&amp;diff=150</id>
		<title>File:Hack the Planet Screenshot 5.png</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_5.png&amp;diff=150"/>
		<updated>2026-03-21T19:38:32Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=RGB puzzle 1 hacking view}}&lt;br /&gt;
|date=2026-03-21&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Blippy|Blippy]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_6.png&amp;diff=149</id>
		<title>File:Hack the Planet Screenshot 6.png</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_6.png&amp;diff=149"/>
		<updated>2026-03-21T19:38:32Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Second RGB puzzle hacking view}}&lt;br /&gt;
|date=2026-03-21&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Blippy|Blippy]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_4.png&amp;diff=148</id>
		<title>File:Hack the Planet Screenshot 4.png</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_4.png&amp;diff=148"/>
		<updated>2026-03-21T19:38:32Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The second RGB puzzle}}&lt;br /&gt;
|date=2026-03-21&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Blippy|Blippy]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_3.png&amp;diff=147</id>
		<title>File:Hack the Planet Screenshot 3.png</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_3.png&amp;diff=147"/>
		<updated>2026-03-21T19:38:31Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The hacker viewing a camera in the game}}&lt;br /&gt;
|date=2026-03-21&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Blippy|Blippy]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_1.png&amp;diff=146</id>
		<title>File:Hack the Planet Screenshot 1.png</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_1.png&amp;diff=146"/>
		<updated>2026-03-21T19:38:31Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=A player standing in the computer}}&lt;br /&gt;
|date=2026-03-21&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Blippy|Blippy]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_2.png&amp;diff=145</id>
		<title>File:Hack the Planet Screenshot 2.png</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Hack_the_Planet_Screenshot_2.png&amp;diff=145"/>
		<updated>2026-03-21T19:38:31Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=A view of the RGB puzzle}}&lt;br /&gt;
|date=2026-03-21&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:Blippy|Blippy]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=144</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=144"/>
		<updated>2026-03-21T19:25:53Z</updated>

		<summary type="html">&lt;p&gt;Blippy: /* List of projects */ + Hack the Planet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the development wiki for Shrimp Squad Inc&lt;br /&gt;
&lt;br /&gt;
This wiki is read-only by default. If you would like to make edits, request an account by contacting &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
== List of projects ==&lt;br /&gt;
* [[Biotama]]&lt;br /&gt;
* [[Hack the Planet]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [https://www.linkedin.com/company/112423389/ Shrimp Squad LinkedIn page]&lt;br /&gt;
* [https://shrimpsquad.ca/ Shrimp Squad main website]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=143</id>
		<title>Biotama</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=143"/>
		<updated>2026-03-21T19:11:50Z</updated>

		<summary type="html">&lt;p&gt;Blippy: adding latest stable&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This the main index page for Project &#039;&#039;&#039;Biotama&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
You can download the latest stable build [[Biotama/Latest|here]].&lt;br /&gt;
== Main pages ==&lt;br /&gt;
* [[Biotama/GDD|Game Design Document]]&lt;br /&gt;
* [[Biotama/Builds|Packaged Builds]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/Latest&amp;diff=142</id>
		<title>Biotama/Latest</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/Latest&amp;diff=142"/>
		<updated>2026-03-21T19:11:16Z</updated>

		<summary type="html">&lt;p&gt;Blippy: creating page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[File:2026-03-21-1205.zip]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=137</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Main_Page&amp;diff=137"/>
		<updated>2026-03-21T05:34:56Z</updated>

		<summary type="html">&lt;p&gt;Blippy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the development wiki for Shrimp Squad Inc&lt;br /&gt;
&lt;br /&gt;
This wiki is read-only by default. If you would like to make edits, request an account by contacting &#039;&#039;&#039;@ecliptica&#039;&#039;&#039; on Discord.&lt;br /&gt;
&lt;br /&gt;
== List of projects ==&lt;br /&gt;
* [[Biotama]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [https://www.linkedin.com/company/112423389/ Shrimp Squad LinkedIn page]&lt;br /&gt;
* [https://shrimpsquad.ca/ Shrimp Squad main website]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=136</id>
		<title>Biotama</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=136"/>
		<updated>2026-03-21T05:34:31Z</updated>

		<summary type="html">&lt;p&gt;Blippy: creating index page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This the main index page for Project &#039;&#039;&#039;Biotama&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Main pages ==&lt;br /&gt;
* [[Biotama/GDD|Game Design Document]]&lt;br /&gt;
* [[Biotama/Builds|Packaged Builds]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=134</id>
		<title>Biotama</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama&amp;diff=134"/>
		<updated>2026-03-21T05:15:05Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Blippy moved page Biotama to Biotama/GDD&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Biotama/GDD]]&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Biotama/GDD&amp;diff=133</id>
		<title>Biotama/GDD</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Biotama/GDD&amp;diff=133"/>
		<updated>2026-03-21T05:15:05Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Blippy moved page Biotama to Biotama/GDD&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Biotama]]&lt;br /&gt;
{{PageStatus|stood-up}}&lt;br /&gt;
[[Image:Biotama Screenshot 1.png|thumb|right|An in-editor screenshot of &#039;&#039;Biotama&#039;&#039; as of March 2026.]]&lt;br /&gt;
&#039;&#039;&#039;Biotama&#039;&#039;&#039; is a game where players attempt to convert wastelands into thriving ecosystems.&lt;br /&gt;
&lt;br /&gt;
In more traditional city-builders like the [https://en.wikipedia.org/wiki/SimCity SimCity] and [https://en.wikipedia.org/wiki/Cities%3A_Skylines Cities: Skylines] series, players start with a pristine landscape, then convert it into a sprawling city, exploiting natural resources and creating pollution.&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;Biotama&#039;&#039;, 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.&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039; 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.&lt;br /&gt;
&lt;br /&gt;
Players build up different ecosystems in various  biomes such as forests, wetlands, and deserts, with each posing unique challenges. They will face world events, such as forest fires and disease outbreaks. The player will navigate these events and increase the overall health of the ecosystem.&lt;br /&gt;
&lt;br /&gt;
=== Biotama is ===&lt;br /&gt;
# A nature building game&lt;br /&gt;
# inspired by traditional city-builders&lt;br /&gt;
# focusing on science and education.&lt;br /&gt;
&lt;br /&gt;
=== Biotama isn&#039;t ===&lt;br /&gt;
&lt;br /&gt;
A fully-fledged nature and climate simulation. &lt;br /&gt;
&lt;br /&gt;
The in-game player lifespan is limited to a few years, whereas major changes in climate take decades or centuries. The player’s goal is to make positive impacts towards future climate change for later generations.&lt;br /&gt;
&lt;br /&gt;
This is a game, first and foremost, and we sometimes intentionally sacrifice full scientific accuracy for gamification and scope management.&lt;br /&gt;
&lt;br /&gt;
== Gameplay ==&lt;br /&gt;
In &#039;&#039;Biotama&#039;&#039;, the player creates sustainable, biodiverse ecosystems (&amp;quot;biota&amp;quot;), as opposed to traditional city-buider human-built settlements. However, the mechanics are quite analogous to city-builders.&lt;br /&gt;
&lt;br /&gt;
Here are some examples:&lt;br /&gt;
* Town Hall → Mother Tree&lt;br /&gt;
* Paths and roads → root systems and mycelial networks&lt;br /&gt;
* Money and raw materials → water, phosphorous, nitrogen, ammonia&lt;br /&gt;
* Power plants and electrical grids → sunlight and photosynthesis&lt;br /&gt;
&lt;br /&gt;
== Setting ==&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039; takes place on an Earth at some undetermined point in the future. All creatures in the game are real species on Earth, but the continents and oceans only loosely resemble present-day Earth. This gives us creative freedom for the layout of the map. &lt;br /&gt;
&lt;br /&gt;
It is implied that &#039;&#039;Biotama&#039;&#039; takes place after some global catastrophe. At the start, much of the planet is covered in desert, volcanism and meteor storms are common, air quality is low, and most of the water is polluted.&lt;br /&gt;
&lt;br /&gt;
Humans do not appear in &#039;&#039;Biotama&#039;&#039;, however remnants of human civilization still remain, such as buildings and industrial waste. We do not state whether or not any humans still exist on the planet.&lt;br /&gt;
&lt;br /&gt;
=== Biomes ===&lt;br /&gt;
The game world is divided into biomes which contain multiple biota.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Description !! Effects !! Plantae !! Fungi !! Animalia &lt;br /&gt;
|-&lt;br /&gt;
| Rainforest || Densely populated with trees || Mild winter, high rainfall, frequent storms || Pine trees, oak trees, grasses, ferns || Anamita, morels, oyster mushrooms, lichens, fairy rings || Deer, foxes, ants, birds&lt;br /&gt;
|-&lt;br /&gt;
| Desert || Sparse hardy vegetation, hot days and cold nights, very rare but severe storms || Droughts, floods, heat waves || Cacti, succulents, grasses, brush || [https://en.wikipedia.org/wiki/Desert_fungi Desert Fungi] || Scorpions, lizards, birds&lt;br /&gt;
|-&lt;br /&gt;
| Plains || Few trees, sparse grass, low humidity, evil bugs || Big wind storms || Grass, birches || Sparse lichen || Wolves, deer, rodents, birds&lt;br /&gt;
|-&lt;br /&gt;
| Boreal Mountain || Hilly, many conifers, cold weather on average || Harsh windy winter storms || Junipers, [https://en.wikipedia.org/wiki/Vaccinium_vitis-idaea lingonberries], pines, spruces, cedars || Shelf Fungus || Bears, moose, elk, marmots&lt;br /&gt;
|-&lt;br /&gt;
| Wetlands || Humid, swampy || Hurricanes, droughts, floods || Algae, lillies, mangroves || Bolete, root fungus || Manatees, fish, caimans, birds&lt;br /&gt;
|-&lt;br /&gt;
| Volcano || Very hot, lava floes, lava tubes, flying rocks || Fires more frequent, limited buildable area, very vertical || Lupine, grass || Fusarium strain flavolapis || Iguanas, bugs&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Systems ==&lt;br /&gt;
=== World Events ===&lt;br /&gt;
World events are modifiers on the entire biome that can trigger randomly. They vary depending on the current season and biome.&lt;br /&gt;
&lt;br /&gt;
These are climactic events which add extra challenge to the gameplay. Players will have to strategically prepare their ecosystems to withstand and recover from these events. &lt;br /&gt;
&lt;br /&gt;
When new species are introduced, new threats will be unlocked, but also the stronger the ecosystem is, the easier it will be to handle threats.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&lt;br /&gt;
!Event Name&lt;br /&gt;
!Description&lt;br /&gt;
!Biome(s)&lt;br /&gt;
!Duration (seconds)&lt;br /&gt;
!Status Effect(s)&lt;br /&gt;
|-&lt;br /&gt;
|Lightning Storm&lt;br /&gt;
|Multiple trees are struck by lightning and have a chance of lighting on fire &lt;br /&gt;
|Forest, Plains&lt;br /&gt;
|30 Base + Humidity Modifier&lt;br /&gt;
|Struck trees do a fire-resistance check to see if they can resist the fire or spread it.&lt;br /&gt;
Nitrogen spawns in the environment.&lt;br /&gt;
|-&lt;br /&gt;
|Drought&lt;br /&gt;
|Water becomes scarce, rain storms are rare and humidity is low&lt;br /&gt;
|All&lt;br /&gt;
|30 Base + Biome Modifier&lt;br /&gt;
|Entities with a water requirement do a water-resistance check to see if they lose HP over time&lt;br /&gt;
|-&lt;br /&gt;
|Wind Storm&lt;br /&gt;
|A windy storm starts damaging entities&lt;br /&gt;
|All&lt;br /&gt;
|30 Base + Density Modifier&lt;br /&gt;
|Entities take health damage over time&lt;br /&gt;
|-&lt;br /&gt;
|Pine Beetle Infestation&lt;br /&gt;
|Damages pine trees in the biome&lt;br /&gt;
|Forest&lt;br /&gt;
|30 Base + Number of Pines&lt;br /&gt;
|Pines take severe damage over time.&lt;br /&gt;
|-&lt;br /&gt;
|Meteor Storm&lt;br /&gt;
|Meteors fall from the sky.&lt;br /&gt;
|All&lt;br /&gt;
|30 to 120&lt;br /&gt;
|Entities take health damage if a meteor hits them. Also deposits new resources in the level.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Global status system ===&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039; has some global parameters, which can change over time and affect all biota in the game. &lt;br /&gt;
&lt;br /&gt;
==== Atmospheric parameters ====&lt;br /&gt;
The global atmosphere&#039;s composition is simplified into concentrations of two gases:&lt;br /&gt;
* Carbon Dioxide (CO2)&lt;br /&gt;
** The higher the concentration, the better plants are able to grow&lt;br /&gt;
** If the concentration is very low, plants will lose HP&lt;br /&gt;
** If the concentration is very high, fungi and animals will lose HP&lt;br /&gt;
* Oxygen (O2)&lt;br /&gt;
** If the concentration is very low, fungi and animals will lose HP&lt;br /&gt;
&lt;br /&gt;
=== Biome status system ===&lt;br /&gt;
The globe is composed of biomes, which are in turn composed of biota. Biomes have parameters which apply to all biota within them.&lt;br /&gt;
&lt;br /&gt;
These properties apply to all biota within a given biome:&lt;br /&gt;
* Ambient temperature&lt;br /&gt;
* Ambient humidity&lt;br /&gt;
* Local wind speed and direction&lt;br /&gt;
&lt;br /&gt;
=== Entity status system ===&lt;br /&gt;
Every living entity in the world has a current and maximum number of hitpoints (HP) as well as a set of properties and status effects.&lt;br /&gt;
&lt;br /&gt;
;Example&lt;br /&gt;
Properties:&lt;br /&gt;
* &#039;&#039;&#039;Name&#039;&#039;&#039;: Mother Tree&lt;br /&gt;
* &#039;&#039;&#039;HP (Current)&#039;&#039;&#039;: 89&lt;br /&gt;
* &#039;&#039;&#039;HP (Max)&#039;&#039;&#039;: 100&lt;br /&gt;
* &#039;&#039;&#039;Kingdom&#039;&#039;&#039;: Plante&lt;br /&gt;
* &#039;&#039;&#039;Species&#039;&#039;&#039;: Oak (&#039;&#039;Quercus&#039;&#039;)&lt;br /&gt;
Status Effects:&lt;br /&gt;
* When in sunlight:&lt;br /&gt;
** +0.8 HP/day&lt;br /&gt;
* When in the presence of phosphorous:&lt;br /&gt;
** +1.2 HP/day&lt;br /&gt;
* When lacking water:&lt;br /&gt;
** -0.5 HP/day&lt;br /&gt;
* During a wind storm:&lt;br /&gt;
** -2.0 HP/day&lt;br /&gt;
&lt;br /&gt;
==== Status effects ====&lt;br /&gt;
Entities can obtain temporary Status Effects based on their current environment and their Survival Requirements.&lt;br /&gt;
&lt;br /&gt;
;Example:&lt;br /&gt;
A fungus which is exposed to too much sun will take HP damage over time, and will eventually die if it doesn&#039;t find shade.&lt;br /&gt;
&lt;br /&gt;
==== Survival requirements ====&lt;br /&gt;
Each organism in &#039;&#039;Biotama&#039;&#039; requires certain things to avoid losing HP and dying.&lt;br /&gt;
;Plantae&lt;br /&gt;
&#039;&#039;All plants&#039;&#039; require:&lt;br /&gt;
* Sunlight&lt;br /&gt;
* Water&lt;br /&gt;
* Carbon Dioxide&lt;br /&gt;
&#039;&#039;Trees&#039;&#039; also require:&lt;br /&gt;
* Phosphorous (P)&lt;br /&gt;
* Nitrogen (N)&lt;br /&gt;
* Potassium (K)&lt;br /&gt;
;Fungi&lt;br /&gt;
&#039;&#039;All fungi&#039;&#039; require:&lt;br /&gt;
* High humidity&lt;br /&gt;
* Low or no sunlight&lt;br /&gt;
* Carbon (C)&lt;br /&gt;
* Nitrogen (N)&lt;br /&gt;
* Oxygen (O)&lt;br /&gt;
;Animalia&lt;br /&gt;
&#039;&#039;All animals&#039;&#039; require:&lt;br /&gt;
* Oxygen (O)&lt;br /&gt;
* Water (H2O)&lt;br /&gt;
* A food source depending on their diet (carnivorous/herbivorous/omnivorous/insectivorous)&lt;br /&gt;
&lt;br /&gt;
====Chemistry====&lt;br /&gt;
Plants in the real world require 17 essential elements to survive. Carbon (C), Hydrogen (H), and Oxygen (O) are acquired from air, water, or both.&lt;br /&gt;
&lt;br /&gt;
Plants in &#039;&#039;Biotama&#039;&#039; store Carbon from the atmosphere, reducing global CO2 levels. Their amount of stored Carbon is proportional to their size. If the plant burns or decays, it releases the Carbon back into the atmosphere.&lt;br /&gt;
&lt;br /&gt;
;The &#039;&#039;&#039;soil&#039;&#039;&#039; elements relevant to &#039;&#039;Biotama&#039;&#039; are:&lt;br /&gt;
*Nitrogen (N)&lt;br /&gt;
*Phosphorous (P)&lt;br /&gt;
*Potassium (K)&lt;br /&gt;
&lt;br /&gt;
;Nitrogen:&lt;br /&gt;
*Can only be used by plants via nitrogen fixation which enriches the soil via lightning, fungi, and bacteria&lt;br /&gt;
*Can not be used by plants directly from the atmosphere as a gas&lt;br /&gt;
*Provides quicker leaf and fruit growth plants&lt;br /&gt;
*When deficient, causes yellow leaves and slow growth, and inhibits fruit growth in plants&lt;br /&gt;
&lt;br /&gt;
;Phosphorus:&lt;br /&gt;
*Is added to the soil by decaying plants or animals, or occasional random atmospheric deposits from other areas&lt;br /&gt;
*Is decreased by plant growth or soil erosion&lt;br /&gt;
*Increases growth in plants&lt;br /&gt;
*When deficient, causes dark green leaves and slow growth in plants, and prevents budding/flowering&lt;br /&gt;
&lt;br /&gt;
;Potassium:&lt;br /&gt;
*Is added to the soil via precipitation or geological events&lt;br /&gt;
*Is decreased by plant growth or soil erosion&lt;br /&gt;
*When deficient, causes reddish-brown leaves in plants, and makes them more vulnerable to winter weather&lt;br /&gt;
&lt;br /&gt;
;Realism Notes:&lt;br /&gt;
#The rest of the core elements are intentionally not part of Biotama for simplicity and scope management: Calcium (Ca), Magnesium (Mg), Sulfur (S), Boron (B), Iron (Fe), Manganese (Mn), Zinc (Zn), Copper (Cu), Chlorine (Cl), Molybdenum (Mo), and Nickel (Ni).&lt;br /&gt;
#Plants technically H2PO4- (dihydrogen phosphate), HPO42- (hydrogen phosphate), PO43- (phosphate). We simplify this in Biotama to just Phosphorus (P).&lt;br /&gt;
#Main source: https://www.bctfpg.ca/horticulture/fruit-tree-nutrition/essential-mineral-nutrients-in-plants-deficiency-toxicity-symptoms-sources-recommendations/&lt;br /&gt;
&lt;br /&gt;
===Camera System===&lt;br /&gt;
The player has a lot of control over the camera. They are able to:&lt;br /&gt;
*Zoom in and out (default: scroll wheel, [+] and [-] keys)&lt;br /&gt;
*Rotate the view (default: [Q] and [E], hold middle click and move horizontally)&lt;br /&gt;
*Pan the view (default: [W][A][S][D], hold right click)&lt;br /&gt;
*Increase/decrease the viewing angle ([Z][X], hold middle click and move vertically)&lt;br /&gt;
&lt;br /&gt;
The camera is attached to a boom which follows the player pawn. The pawn is invisible to the player and can clip through objects, but not the ground.&lt;br /&gt;
&lt;br /&gt;
To prevent the player from seeing the edges of the world, the pawn can only get within a certain distance of the map edges.&lt;br /&gt;
&lt;br /&gt;
The player can also switch between above-ground and below-ground views (default: [Tab]).&lt;br /&gt;
&lt;br /&gt;
===Game Speed Controls===&lt;br /&gt;
The player can choose between four simulation speeds. The speed is changed either by pressing the number keys [1][2][3][4] or by clicking the associated buttons on the HUD.&lt;br /&gt;
&lt;br /&gt;
The player can also pause and unpause the game by pressing [Space], clicking the pause button on the HUD, or opening the System Menu (default: [Esc]).&lt;br /&gt;
&lt;br /&gt;
The player pawn doesn’t respect game speed, so the player can move the camera around regardless of whether the game is paused or how fast the game speed is.&lt;br /&gt;
&lt;br /&gt;
===Sun, Moon, and Stars===&lt;br /&gt;
The sun acts similarly to the sun on Earth. We will start with a simpler system (Basic Design), and if we have the time and resources to make a more realistic system (Realistic Design), that will follow.&lt;br /&gt;
&lt;br /&gt;
Rather than making a faithful representation of the actual Earth, Biotama takes place on a fictional Earth-like planet. This allows us to handcraft the layout of the continents, oceans, and biomes based on game design decisions rather than fixating on pure realism.&lt;br /&gt;
&lt;br /&gt;
Organisms that photosynthesize are affected by the current sun coverage, which is represented to the player as a value from 0% to 100%. 0% would only occur in pitch darkness, where the sun is on the other side of the planet.&lt;br /&gt;
&lt;br /&gt;
====Basic Design====&lt;br /&gt;
At the very least, these should be true:&lt;br /&gt;
#There is a day-night cycle which affects photosynthesis in plants&lt;br /&gt;
#The sun rises in the east and sets in the west&lt;br /&gt;
#The maximum altitude the sun reaches depends on the season&lt;br /&gt;
#*For biota in the northern or southern hemisphere, the sun has a lower altitude in winter and higher in summer&lt;br /&gt;
#*For biota on the equator, the sun always passes directly above at noon&lt;br /&gt;
#The moon rises and sets to some extent. This could be very simple; for example, in Minecraft, the moon rises as the sun sets, and vice versa.&lt;br /&gt;
#The stars are visible in the sky during nighttime.&lt;br /&gt;
&lt;br /&gt;
====Realistic Design====&lt;br /&gt;
All of the rules in Design #1 hold true, with the following nuances:&lt;br /&gt;
#The sun’s altitude, azimuth, sunrise time, and sunset time all depend on the current biotum’s latitude and longitude, as well as the specific day of the year.&lt;br /&gt;
#Solstices and equinoxes occur everywhere except at the equator.&lt;br /&gt;
#Summer in the southern hemisphere is winter in the northern hemisphere, and vice versa.&lt;br /&gt;
#The moon circles the planet every 28 days, showing various phases and sometimes appearing during the day.&lt;br /&gt;
#The starry skybox revolves around the axis of rotation of the planet by 15 degrees per hour, as in real life.&lt;br /&gt;
#Sunlight received by plants is affected by clouds, ash, and dust in the atmosphere&lt;br /&gt;
&lt;br /&gt;
The websites https://suncalc.org/ and https://mooncalc.org/ should help us understand how to build this sort of system.&lt;br /&gt;
&lt;br /&gt;
==Core Game Loop==&lt;br /&gt;
*Start in a barren region with a single tree&lt;br /&gt;
*Gather resources (nutrients, water, sunlight) from soil and atmosphere&lt;br /&gt;
*Spend resources to grow flora, improving the ecosystem and gaining research points&lt;br /&gt;
*Spend research points and progress through the three tech trees (flora/fauna/fungi)&lt;br /&gt;
*Create symbiotic relationships between the three tech trees and stabilize the biome&lt;br /&gt;
*Move on to the next barren region, which poses unique challenges&lt;br /&gt;
*Collect long-term progression rewards&lt;br /&gt;
[[Image:Gameloop.png|The core game loop of Biotama]]&lt;br /&gt;
&lt;br /&gt;
==Long-Term Progression Loop==&lt;br /&gt;
Long-term progression takes the form of a global ecosystem score. &lt;br /&gt;
&lt;br /&gt;
As players reach milestones, they will unlock new biomes, species, and abilities in the form of a tech tree.&lt;br /&gt;
&lt;br /&gt;
As shown in Figure 1, the player selects a location from a hex grid on the Planet Map. Locations will vary in difficulty, with higher difficulties yielding greater long-term progression rewards. Rather than traditional difficulty levels that are explicitly chosen, difficulty is implicitly calculated based on region-specific factors such as soil quality, weather, and proximity to hazards. Each location will be uniquely generated via Procedural Content Generation (PCG) providing high replayability while ensuring no two runs are the same.&lt;br /&gt;
[[Image:Outergameloop.png|800px|The inner game loop of Biotama]]&lt;br /&gt;
&lt;br /&gt;
==Tech Tree==&lt;br /&gt;
Players start with no ability to research.&lt;br /&gt;
Player recognizes that their only pool of water is almost empty.&lt;br /&gt;
*Player is given objective to find a new source of water.&lt;br /&gt;
*Player builds roots towards the nearby river.&lt;br /&gt;
*Player fulfills FTUE thirst objective.&lt;br /&gt;
*Player has to now find nearby mycelium to interface with the fungi and unlock research.&lt;br /&gt;
*Should we show them this directly?&lt;br /&gt;
or just leave it as open-ended discovery and give them strong level hints as to where they should go?&lt;br /&gt;
*Player grows roots towards the fungi, and on contact, they unlock research.&lt;br /&gt;
*This automatically unlocks the &amp;quot;Lichen Symbiosis&amp;quot; upgrade, the root node of Plantae.&lt;br /&gt;
*Players now have access to the tech tree, and can see leave nodes.&lt;br /&gt;
*For now we can reveal the whole tech tree, but probably want the ability to hide later endgame ones eventually.&lt;br /&gt;
*Player gains research points over time from having a fungal colony.&lt;br /&gt;
*Player unlocks a new research, e.g. &amp;quot;Water Analysis&amp;quot; as the root upgrade for the Fungi tree which reveals to them that the river is contaminated, and gives them an ability to view water contamination in different areas (probably as an overlay or something)&lt;br /&gt;
[[Image:techtree.png|500px|The tech tree of Biotama]]&lt;br /&gt;
&lt;br /&gt;
====Plants====&lt;br /&gt;
;Early Game&lt;br /&gt;
*Moss&lt;br /&gt;
*Grass&lt;br /&gt;
*Hardy saplings&lt;br /&gt;
;Mid Game&lt;br /&gt;
*Flowering plants&lt;br /&gt;
*Root systems&lt;br /&gt;
*Photosynthesis&lt;br /&gt;
;Late Game&lt;br /&gt;
*Customizable plant species capable of terraforming a local biome&lt;br /&gt;
*Symbiosis with fungi&lt;br /&gt;
====Fungi====&lt;br /&gt;
;Early Game&lt;br /&gt;
*Mycorrhizal interfaces (plants–fungi)&lt;br /&gt;
*Simple decomposition&lt;br /&gt;
;Mid Game&lt;br /&gt;
*Mycelial networks&lt;br /&gt;
*Transportation of nutrients and information&lt;br /&gt;
;Late Game&lt;br /&gt;
*Spore transmission&lt;br /&gt;
*DNA mixing&lt;br /&gt;
*Full interfacing with plants and animals&lt;br /&gt;
====Animals====&lt;br /&gt;
;Early Game&lt;br /&gt;
*Microbes&lt;br /&gt;
;Mid Game&lt;br /&gt;
*Insects&lt;br /&gt;
*Fish&lt;br /&gt;
;Late Game&lt;br /&gt;
*Birds&lt;br /&gt;
*Reptiles&lt;br /&gt;
*Mammals&lt;br /&gt;
&lt;br /&gt;
== Production ==&lt;br /&gt;
TBD&lt;br /&gt;
== Art ==&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039; uses a stylized art style, with flat textures and meshes with limited poly counts. This allows us to more easily manage performance, scope, and budget, as well as giving the project a unique aesthetic.&lt;br /&gt;
&lt;br /&gt;
Shaders will be used heavily to convey time of day, seasons, and weather effects.&lt;br /&gt;
&lt;br /&gt;
== Audio ==&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039;&#039;s soundtrack is made in-house. Most of the music is piano-heavy, and the intensity of the music depends on what&#039;s currently happening in the game; when things are calm the music will be slow and ambient, whereas when world events happen it will become more dramatic.&lt;br /&gt;
&lt;br /&gt;
Foley will use a mix of audio libraries and assets created in-house from source recorded by our development team.&lt;br /&gt;
&lt;br /&gt;
== Technology ==&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039; is being developed using Unreal Engine 5.&lt;br /&gt;
&lt;br /&gt;
Builds are currently only being tested on Windows 11.&lt;br /&gt;
&lt;br /&gt;
=== Asset creation ===&lt;br /&gt;
We are leveraging free, open-source software as much as possible. We are primarily using [https://www.jetbrains.com/rider/ Rider] as our IDE for C++ and C#. &lt;br /&gt;
&lt;br /&gt;
Images are created using [https://krita.org/en/ Krita] and [https://gimp.org GIMP]. 3D meshes are created using [https://blender.org Blender].&lt;br /&gt;
&lt;br /&gt;
Music and other audio in the game is created using [https://www.ableton.com/en/ Ableton Live] and [https://www.audacityteam.org/ Audacity].&lt;br /&gt;
&lt;br /&gt;
=== CI and Source control ===&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039; uses Git and GitHub for versioning. &lt;br /&gt;
&lt;br /&gt;
We have an in-house build machine which listens for GitHub commits. When a new commit comes in, the build machine syncs the change, compiles the code, cooks the content, runs automated tests, then posts the results on our internal Discord server.&lt;br /&gt;
&lt;br /&gt;
=== Documentation ===&lt;br /&gt;
This MediaWiki instance serves as our main source of documentation.&lt;br /&gt;
&lt;br /&gt;
=== AI ===&lt;br /&gt;
&#039;&#039;Biotama&#039;&#039; does &#039;&#039;&#039;not&#039;&#039;&#039; use generative AI for any purpose. All text in-game will be written by our team. All assets will be either created in-house or acquired via free and paid libraries.&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=132</id>
		<title>Lunch Games</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=132"/>
		<updated>2026-03-21T04:50:50Z</updated>

		<summary type="html">&lt;p&gt;Blippy: /* Epic Games Launcher */ expanding section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often play lunch games, but have trouble deciding as we can never remember which ones we commonly play.&lt;br /&gt;
&lt;br /&gt;
This is a list we can keep updated and refer to whenever we&#039;re indecisive!&lt;br /&gt;
&lt;br /&gt;
== Steam ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;200&amp;quot; | Image &lt;br /&gt;
! Steam Link &lt;br /&gt;
! Min Players&lt;br /&gt;
! Max Players&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:4D Golf.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2147950/4D_Golf/ 4D Golf]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Ale &amp;amp; Tale Tavern.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2683150/Ale__Tale_Tavern/ Ale &amp;amp; Tale Tavern]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Among Us.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/945360/Among_Us/ Among Us]&lt;br /&gt;
|4&lt;br /&gt;
|15&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Apex Legends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172470/Apex_Legends/ Apex Legends]&lt;br /&gt;
|1&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Astroneer.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/361420/ASTRONEER/ Astroneer]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Backrooms Escape Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2141730/Backrooms_Escape_Together/ Backrooms:Escape Together]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Baldur&#039;s Gate 3.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1086940/Baldurs_Gate_3/ Baldur&#039;s Gate 3]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:BAPBAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2226280/BAPBAP/ BAPBAP]&lt;br /&gt;
|2&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Car Service Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3501070/Car_Service_Together/ Car Service Together]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Chivalry 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1824220/Chivalry_2/ Chivalry 2]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization V.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization V]&lt;br /&gt;
|1&lt;br /&gt;
|22&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization VI.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization VI]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:ContractVille.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2698780/ContractVille/ Contractville]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crashout Crew.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3583210/Crashout_Crew/ Crashout Crew]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crusader Kings III.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1158310/Crusader_Kings_III/ Crusader Kings III]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Deep Rock Galactic.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/548430/Deep_Rock_Galactic/ Deep Rock Galactic]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Don&#039;t Starve Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/322330/Dont_Starve_Together/ Don&#039;t Starve Together]&lt;br /&gt;
|1&lt;br /&gt;
|16*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Factorio.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/427520/Factorio/ Factorio]&lt;br /&gt;
|1&lt;br /&gt;
|65,535&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fall Guys.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1097150/Fall_Guys/ Fall Guys] (now only buyable on Epic Store)&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fast Food Simulator.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2916430/Fast_Food_Simulator/ Fast Food Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Golf With Your Friends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/431240/Golf_With_Your_Friends/ Golf With Your Friends]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Garry&#039;s Mod.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/4000/Garrys_Mod/ Garry&#039;s Mod]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Green Hell.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/815370/Green_Hell/ Green Hell]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Infinite.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1240440/Halo_Infinite/ Halo Infinite]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Master Chief Collection.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/976730/Halo_The_Master_Chief_Collection/ Halo: The Master Chief Collection]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:HELLDIVERS 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/553850/HELLDIVERS_2/ HELLDIVERS 2]&lt;br /&gt;
|3&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jackbox Megapicker.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2828500/The_Jackbox_Megapicker/ The Jackbox Megapicker]&lt;br /&gt;
|2&lt;br /&gt;
|100&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jump Space.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1757300/Jump_Space/ Jump Space]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Kebab Chefs.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1001270/Kebab_Chefs__Restaurant_Simulator/ Kebab Chefs! - Restaurant Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Keep Talking and Nobody Explodes.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/341800/Keep_Talking_and_Nobody_Explodes/ Keep Talking and Nobody Explodes]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lethal Company.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1966720/Lethal_Company/ Lethal Company]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:NERTS.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1131190/NERTS_Online/ NERTS! Online]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:No Man&#039;s Sky.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/275850/No_Mans_Sky/ No Man&#039;s Sky]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PEAK Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3527290/PEAK/ PEAK]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Phasmophobia.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/739630/Phasmophobia/ Phasmophobia]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PlateUp!.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1599600/PlateUp/ PlateUp!]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Raft Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/648800/Raft/ Raft]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rust.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/252490/Rust/ Rust]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:RV There Yet.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3949040/RV_There_Yet/ RV There Yet]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Satisfactory.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/526870/Satisfactory/ Satisfactory]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Sea of Thieves.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172620/Sea_of_Thieves_2025_Edition/ Sea of Thieves: 2025 Edition]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Space Engineers.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/244850/Space_Engineers/ Space Engineers]&lt;br /&gt;
|1&lt;br /&gt;
|16&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Stardew Valley.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/413150/Stardew_Valley/ Stardew Valley]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Star Wars Battlefront II.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1237950/STAR_WARS_Battlefront_II/ STAR WARS Battlefront II]&lt;br /&gt;
|1&lt;br /&gt;
|20&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tabletop Simulator.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/286160/Tabletop_Simulator/ Tabletop Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|10&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Terraria Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/105600/Terraria/ Terraria]&lt;br /&gt;
|1&lt;br /&gt;
|16&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:THE FINALS.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2073850/THE_FINALS/ THE FINALS]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:The Planet Crafter.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1284190/The_Planet_Crafter/ The Planet Crafter]&lt;br /&gt;
|1&lt;br /&gt;
|10&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tropico 6.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/492720/Tropico_6/ Tropico 6]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Valheim.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/892970/Valheim/ Valheim]&lt;br /&gt;
|1&lt;br /&gt;
|10*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:V Rising.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1604030/V_Rising/ V Rising]&lt;br /&gt;
|1&lt;br /&gt;
|128&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Wingspan Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1054490/Wingspan/ Wingspan]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:YAPYAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3834090/YAPYAP/ YAPYAP]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&#039;&#039;Player max count can be increased with mods&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Epic Games Launcher ==&lt;br /&gt;
* Chivalry II&lt;br /&gt;
* Fall Guys&lt;br /&gt;
* GTA V&lt;br /&gt;
&lt;br /&gt;
== Others ==&lt;br /&gt;
* Minecraft&lt;br /&gt;
* StarCraft II&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=131</id>
		<title>Lunch Games</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=131"/>
		<updated>2026-03-21T04:50:19Z</updated>

		<summary type="html">&lt;p&gt;Blippy: completing Steam table&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often play lunch games, but have trouble deciding as we can never remember which ones we commonly play.&lt;br /&gt;
&lt;br /&gt;
This is a list we can keep updated and refer to whenever we&#039;re indecisive!&lt;br /&gt;
&lt;br /&gt;
== Steam ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;200&amp;quot; | Image &lt;br /&gt;
! Steam Link &lt;br /&gt;
! Min Players&lt;br /&gt;
! Max Players&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:4D Golf.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2147950/4D_Golf/ 4D Golf]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Ale &amp;amp; Tale Tavern.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2683150/Ale__Tale_Tavern/ Ale &amp;amp; Tale Tavern]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Among Us.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/945360/Among_Us/ Among Us]&lt;br /&gt;
|4&lt;br /&gt;
|15&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Apex Legends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172470/Apex_Legends/ Apex Legends]&lt;br /&gt;
|1&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Astroneer.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/361420/ASTRONEER/ Astroneer]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Backrooms Escape Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2141730/Backrooms_Escape_Together/ Backrooms:Escape Together]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Baldur&#039;s Gate 3.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1086940/Baldurs_Gate_3/ Baldur&#039;s Gate 3]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:BAPBAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2226280/BAPBAP/ BAPBAP]&lt;br /&gt;
|2&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Car Service Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3501070/Car_Service_Together/ Car Service Together]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Chivalry 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1824220/Chivalry_2/ Chivalry 2]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization V.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization V]&lt;br /&gt;
|1&lt;br /&gt;
|22&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization VI.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization VI]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:ContractVille.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2698780/ContractVille/ Contractville]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crashout Crew.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3583210/Crashout_Crew/ Crashout Crew]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crusader Kings III.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1158310/Crusader_Kings_III/ Crusader Kings III]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Deep Rock Galactic.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/548430/Deep_Rock_Galactic/ Deep Rock Galactic]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Don&#039;t Starve Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/322330/Dont_Starve_Together/ Don&#039;t Starve Together]&lt;br /&gt;
|1&lt;br /&gt;
|16*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Factorio.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/427520/Factorio/ Factorio]&lt;br /&gt;
|1&lt;br /&gt;
|65,535&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fall Guys.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1097150/Fall_Guys/ Fall Guys] (now only buyable on Epic Store)&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fast Food Simulator.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2916430/Fast_Food_Simulator/ Fast Food Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Golf With Your Friends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/431240/Golf_With_Your_Friends/ Golf With Your Friends]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Garry&#039;s Mod.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/4000/Garrys_Mod/ Garry&#039;s Mod]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Green Hell.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/815370/Green_Hell/ Green Hell]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Infinite.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1240440/Halo_Infinite/ Halo Infinite]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Master Chief Collection.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/976730/Halo_The_Master_Chief_Collection/ Halo: The Master Chief Collection]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:HELLDIVERS 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/553850/HELLDIVERS_2/ HELLDIVERS 2]&lt;br /&gt;
|3&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jackbox Megapicker.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2828500/The_Jackbox_Megapicker/ The Jackbox Megapicker]&lt;br /&gt;
|2&lt;br /&gt;
|100&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jump Space.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1757300/Jump_Space/ Jump Space]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Kebab Chefs.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1001270/Kebab_Chefs__Restaurant_Simulator/ Kebab Chefs! - Restaurant Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Keep Talking and Nobody Explodes.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/341800/Keep_Talking_and_Nobody_Explodes/ Keep Talking and Nobody Explodes]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lethal Company.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1966720/Lethal_Company/ Lethal Company]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:NERTS.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1131190/NERTS_Online/ NERTS! Online]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:No Man&#039;s Sky.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/275850/No_Mans_Sky/ No Man&#039;s Sky]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PEAK Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3527290/PEAK/ PEAK]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Phasmophobia.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/739630/Phasmophobia/ Phasmophobia]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PlateUp!.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1599600/PlateUp/ PlateUp!]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Raft Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/648800/Raft/ Raft]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rust.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/252490/Rust/ Rust]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:RV There Yet.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3949040/RV_There_Yet/ RV There Yet]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Satisfactory.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/526870/Satisfactory/ Satisfactory]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Sea of Thieves.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172620/Sea_of_Thieves_2025_Edition/ Sea of Thieves: 2025 Edition]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Space Engineers.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/244850/Space_Engineers/ Space Engineers]&lt;br /&gt;
|1&lt;br /&gt;
|16&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Stardew Valley.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/413150/Stardew_Valley/ Stardew Valley]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Star Wars Battlefront II.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1237950/STAR_WARS_Battlefront_II/ STAR WARS Battlefront II]&lt;br /&gt;
|1&lt;br /&gt;
|20&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tabletop Simulator.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/286160/Tabletop_Simulator/ Tabletop Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|10&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Terraria Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/105600/Terraria/ Terraria]&lt;br /&gt;
|1&lt;br /&gt;
|16&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:THE FINALS.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2073850/THE_FINALS/ THE FINALS]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:The Planet Crafter.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1284190/The_Planet_Crafter/ The Planet Crafter]&lt;br /&gt;
|1&lt;br /&gt;
|10&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tropico 6.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/492720/Tropico_6/ Tropico 6]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Valheim.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/892970/Valheim/ Valheim]&lt;br /&gt;
|1&lt;br /&gt;
|10*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:V Rising.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1604030/V_Rising/ V Rising]&lt;br /&gt;
|1&lt;br /&gt;
|128&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Wingspan Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1054490/Wingspan/ Wingspan]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:YAPYAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3834090/YAPYAP/ YAPYAP]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&#039;&#039;Player max count can be increased with mods&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Epic Games Launcher ==&lt;br /&gt;
* Chivalry II&lt;br /&gt;
* GTA V&lt;br /&gt;
&lt;br /&gt;
== Others ==&lt;br /&gt;
* Minecraft&lt;br /&gt;
* StarCraft II&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=130</id>
		<title>Lunch Games</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=130"/>
		<updated>2026-03-21T04:34:31Z</updated>

		<summary type="html">&lt;p&gt;Blippy: expanding table&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often play lunch games, but have trouble deciding as we can never remember which ones we commonly play.&lt;br /&gt;
&lt;br /&gt;
This is a list we can keep updated and refer to whenever we&#039;re indecisive!&lt;br /&gt;
&lt;br /&gt;
== Steam ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;200&amp;quot; | Image &lt;br /&gt;
! Steam Link &lt;br /&gt;
! Min Players&lt;br /&gt;
! Max Players&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:4D Golf.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2147950/4D_Golf/ 4D Golf]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Ale &amp;amp; Tale Tavern.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2683150/Ale__Tale_Tavern/ Ale &amp;amp; Tale Tavern]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Among Us.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/945360/Among_Us/ Among Us]&lt;br /&gt;
|4&lt;br /&gt;
|15&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Apex Legends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172470/Apex_Legends/ Apex Legends]&lt;br /&gt;
|1&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Astroneer.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/361420/ASTRONEER/ Astroneer]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Backrooms Escape Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2141730/Backrooms_Escape_Together/ Backrooms:Escape Together]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Baldur&#039;s Gate 3.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1086940/Baldurs_Gate_3/ Baldur&#039;s Gate 3]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:BAPBAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2226280/BAPBAP/ BAPBAP]&lt;br /&gt;
|2&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Car Service Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3501070/Car_Service_Together/ Car Service Together]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Chivalry 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1824220/Chivalry_2/ Chivalry 2]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization V.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization V]&lt;br /&gt;
|1&lt;br /&gt;
|22&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization VI.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization VI]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:ContractVille.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2698780/ContractVille/ Contractville]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crashout Crew.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3583210/Crashout_Crew/ Crashout Crew]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crusader Kings III.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1158310/Crusader_Kings_III/ Crusader Kings III]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Deep Rock Galactic.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/548430/Deep_Rock_Galactic/ Deep Rock Galactic]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Don&#039;t Starve Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/322330/Dont_Starve_Together/ Don&#039;t Starve Together]&lt;br /&gt;
|1&lt;br /&gt;
|16*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Factorio.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/427520/Factorio/ Factorio]&lt;br /&gt;
|1&lt;br /&gt;
|65,535&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fall Guys.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1097150/Fall_Guys/ Fall Guys] (now only buyable on Epic Store)&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Fast Food Simulator.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2916430/Fast_Food_Simulator/ Fast Food Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Golf With Your Friends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/431240/Golf_With_Your_Friends/ Golf With Your Friends]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Garry&#039;s Mod.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/4000/Garrys_Mod/ Garry&#039;s Mod]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Green Hell.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/815370/Green_Hell/ Green Hell]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Infinite.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1240440/Halo_Infinite/ Halo Infinite]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halo Master Chief Collection.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/976730/Halo_The_Master_Chief_Collection/ Halo: The Master Chief Collection]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:HELLDIVERS 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/553850/HELLDIVERS_2/ HELLDIVERS 2]&lt;br /&gt;
|3&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jackbox Megapicker.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2828500/The_Jackbox_Megapicker/ The Jackbox Megapicker]&lt;br /&gt;
|2&lt;br /&gt;
|100&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jump Space.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1757300/Jump_Space/ Jump Space]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Kebab Chefs.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1001270/Kebab_Chefs__Restaurant_Simulator/ Kebab Chefs! - Restaurant Simulator]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Keep Talking and Nobody Explodes.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/341800/Keep_Talking_and_Nobody_Explodes/ Keep Talking and Nobody Explodes]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lethal Company.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1966720/Lethal_Company/ Lethal Company]&lt;br /&gt;
|1&lt;br /&gt;
|4*&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:NERTS.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1131190/NERTS_Online/ NERTS! Online]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:No Man&#039;s Sky.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/275850/No_Mans_Sky/ No Man&#039;s Sky]&lt;br /&gt;
|1&lt;br /&gt;
|32&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PEAK Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3527290/PEAK/ PEAK]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Phasmophobia.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/739630/Phasmophobia/ Phasmophobia]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:PlateUp!.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1599600/PlateUp/ PlateUp!]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Raft Game.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/648800/Raft/ Raft]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rust.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/252490/Rust/ Rust]&lt;br /&gt;
|1&lt;br /&gt;
|n/a&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:RV There Yet.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3949040/RV_There_Yet/ RV There Yet]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt;&#039;&#039;Player max count can be increased with mods&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Rust&lt;br /&gt;
* RV There Yet&lt;br /&gt;
* Satisfactory&lt;br /&gt;
* Sea of Thieves&lt;br /&gt;
* Space Engineers&lt;br /&gt;
* Stardew Valley&lt;br /&gt;
* Star Wars: Battlefront II&lt;br /&gt;
* Tabletop Simulator&lt;br /&gt;
* Terraria&lt;br /&gt;
* The Finals&lt;br /&gt;
* The Planet Crafter&lt;br /&gt;
* Tropico 6&lt;br /&gt;
* Valheim&lt;br /&gt;
* V Rising&lt;br /&gt;
* Wingspan&lt;br /&gt;
* YAPYAP&lt;br /&gt;
&lt;br /&gt;
== Epic Games Launcher ==&lt;br /&gt;
* Chivalry II&lt;br /&gt;
* GTA V&lt;br /&gt;
&lt;br /&gt;
== Others ==&lt;br /&gt;
* Minecraft&lt;br /&gt;
* StarCraft II&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Rust.jpg&amp;diff=129</id>
		<title>File:Rust.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Rust.jpg&amp;diff=129"/>
		<updated>2026-03-21T04:33:25Z</updated>

		<summary type="html">&lt;p&gt;Blippy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=128</id>
		<title>Lunch Games</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=128"/>
		<updated>2026-03-21T03:56:37Z</updated>

		<summary type="html">&lt;p&gt;Blippy: expanding table&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often play lunch games, but have trouble deciding as we can never remember which ones we commonly play.&lt;br /&gt;
&lt;br /&gt;
This is a list we can keep updated and refer to whenever we&#039;re indecisive!&lt;br /&gt;
&lt;br /&gt;
== Steam ==&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;200&amp;quot; | Image &lt;br /&gt;
! Steam Link &lt;br /&gt;
! Min Players&lt;br /&gt;
! Max Players&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:4D Golf.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2147950/4D_Golf/ 4D Golf]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Ale &amp;amp; Tale Tavern.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2683150/Ale__Tale_Tavern/ Ale &amp;amp; Tale Tavern]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Among Us.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/945360/Among_Us/ Among Us]&lt;br /&gt;
|4&lt;br /&gt;
|15&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Apex Legends.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1172470/Apex_Legends/ Apex Legends]&lt;br /&gt;
|1&lt;br /&gt;
|3&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Astroneer.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/361420/ASTRONEER/ Astroneer]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Backrooms Escape Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2141730/Backrooms_Escape_Together/ Backrooms:Escape Together]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Baldur&#039;s Gate 3.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1086940/Baldurs_Gate_3/ Baldur&#039;s Gate 3]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:BAPBAP.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2226280/BAPBAP/ BAPBAP]&lt;br /&gt;
|2&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Car Service Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3501070/Car_Service_Together/ Car Service Together]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Chivalry 2.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1824220/Chivalry_2/ Chivalry 2]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization V.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization V]&lt;br /&gt;
|1&lt;br /&gt;
|22&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Civilization VI.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/8930/Sid_Meiers_Civilization_V/ Sid Meier&#039;s Civilization VI]&lt;br /&gt;
|1&lt;br /&gt;
|12&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:ContractVille.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2698780/ContractVille/ Contractville]&lt;br /&gt;
|1&lt;br /&gt;
|5&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crashout Crew.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/3583210/Crashout_Crew/ Crashout Crew]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Crusader Kings III.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/1158310/Crusader_Kings_III/ Crusader Kings III]&lt;br /&gt;
|1&lt;br /&gt;
|64&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Deep Rock Galactic.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/548430/Deep_Rock_Galactic/ Deep Rock Galactic]&lt;br /&gt;
|1&lt;br /&gt;
|4&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Don&#039;t Starve Together.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/322330/Dont_Starve_Together/ Don&#039;t Starve Together]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
* Factorio&lt;br /&gt;
* Fall Guys&lt;br /&gt;
* Fast Food Simulator&lt;br /&gt;
* Garry&#039;s Mod&lt;br /&gt;
* Golf with your Friends&lt;br /&gt;
* Green Hell&lt;br /&gt;
* Halo&lt;br /&gt;
* HELLDIVERS 2&lt;br /&gt;
* Jackbox&lt;br /&gt;
* Jump Space&lt;br /&gt;
* Kebab Chefs!&lt;br /&gt;
* Keep Talking and Nobody Explodes&lt;br /&gt;
* Lethal Company&lt;br /&gt;
* NERTS&lt;br /&gt;
* No Man&#039;s Sky&lt;br /&gt;
* PEAK&lt;br /&gt;
* Phasmophobia&lt;br /&gt;
* PlateUp!&lt;br /&gt;
* Raft&lt;br /&gt;
* Rocket League&lt;br /&gt;
* Rust&lt;br /&gt;
* RV There Yet&lt;br /&gt;
* Satisfactory&lt;br /&gt;
* Sea of Thieves&lt;br /&gt;
* Space Engineers&lt;br /&gt;
* Stardew Valley&lt;br /&gt;
* Star Wars: Battlefront II&lt;br /&gt;
* Tabletop Simulator&lt;br /&gt;
* Terraria&lt;br /&gt;
* The Finals&lt;br /&gt;
* The Planet Crafter&lt;br /&gt;
* Tropico 6&lt;br /&gt;
* Valheim&lt;br /&gt;
* V Rising&lt;br /&gt;
* Wingspan&lt;br /&gt;
* YAPYAP&lt;br /&gt;
&lt;br /&gt;
== Epic Games Launcher ==&lt;br /&gt;
* Chivalry II&lt;br /&gt;
* GTA V&lt;br /&gt;
&lt;br /&gt;
== Others ==&lt;br /&gt;
* Minecraft&lt;br /&gt;
* StarCraft II&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=127</id>
		<title>Lunch Games</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=Lunch_Games&amp;diff=127"/>
		<updated>2026-03-21T00:08:05Z</updated>

		<summary type="html">&lt;p&gt;Blippy: /* Steam */ starting work on wikitable&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We often play lunch games, but have trouble deciding as we can never remember which ones we commonly play.&lt;br /&gt;
&lt;br /&gt;
This is a list we can keep updated and refer to whenever we&#039;re indecisive!&lt;br /&gt;
&lt;br /&gt;
== Steam ==&lt;br /&gt;
{| class=&amp;quot;wiktable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;200&amp;quot; | Image &lt;br /&gt;
! Steam Link &lt;br /&gt;
! Min Players&lt;br /&gt;
! Max Players&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:4D Golf.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2147950/4D_Golf/ 4D Golf]&lt;br /&gt;
|1&lt;br /&gt;
|8&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Ale &amp;amp; Tale Tavern.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/2683150/Ale__Tale_Tavern/ Ale &amp;amp; Tale Tavern]&lt;br /&gt;
|1&lt;br /&gt;
|6&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Among Us.jpg|200px]]&lt;br /&gt;
|[https://store.steampowered.com/app/945360/Among_Us/ Among Us]&lt;br /&gt;
|4&lt;br /&gt;
|15&lt;br /&gt;
|}&lt;br /&gt;
* Apex Legends&lt;br /&gt;
* Astroneer&lt;br /&gt;
* Backrooms: Escape Together&lt;br /&gt;
* Baldur&#039;s Gate 3&lt;br /&gt;
* BAPBAP&lt;br /&gt;
* Car Service Together&lt;br /&gt;
* Chivalry 2&lt;br /&gt;
* Civilization V&lt;br /&gt;
* Civilization VI&lt;br /&gt;
* Contractville&lt;br /&gt;
* Crashout Crew&lt;br /&gt;
* Crusader Kings III&lt;br /&gt;
* Deep Rock Galactic&lt;br /&gt;
* Don&#039;t Starve Together&lt;br /&gt;
* Factorio&lt;br /&gt;
* Fall Guys&lt;br /&gt;
* Fast Food Simulator&lt;br /&gt;
* Garry&#039;s Mod&lt;br /&gt;
* Golf with your Friends&lt;br /&gt;
* Green Hell&lt;br /&gt;
* Halo&lt;br /&gt;
* HELLDIVERS 2&lt;br /&gt;
* Jackbox&lt;br /&gt;
* Jump Space&lt;br /&gt;
* Kebab Chefs!&lt;br /&gt;
* Keep Talking and Nobody Explodes&lt;br /&gt;
* Lethal Company&lt;br /&gt;
* NERTS&lt;br /&gt;
* No Man&#039;s Sky&lt;br /&gt;
* PEAK&lt;br /&gt;
* Phasmophobia&lt;br /&gt;
* PlateUp!&lt;br /&gt;
* Raft&lt;br /&gt;
* Rocket League&lt;br /&gt;
* Rust&lt;br /&gt;
* RV There Yet&lt;br /&gt;
* Satisfactory&lt;br /&gt;
* Sea of Thieves&lt;br /&gt;
* Space Engineers&lt;br /&gt;
* Stardew Valley&lt;br /&gt;
* Star Wars: Battlefront II&lt;br /&gt;
* Tabletop Simulator&lt;br /&gt;
* Terraria&lt;br /&gt;
* The Finals&lt;br /&gt;
* The Planet Crafter&lt;br /&gt;
* Tropico 6&lt;br /&gt;
* Valheim&lt;br /&gt;
* V Rising&lt;br /&gt;
* Wingspan&lt;br /&gt;
* YAPYAP&lt;br /&gt;
&lt;br /&gt;
== Epic Games Launcher ==&lt;br /&gt;
* Chivalry II&lt;br /&gt;
* GTA V&lt;br /&gt;
&lt;br /&gt;
== Others ==&lt;br /&gt;
* Minecraft&lt;br /&gt;
* StarCraft II&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:RV_There_Yet.jpg&amp;diff=126</id>
		<title>File:RV There Yet.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:RV_There_Yet.jpg&amp;diff=126"/>
		<updated>2026-03-20T23:51:33Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=RV There Yet}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:YAPYAP.jpg&amp;diff=125</id>
		<title>File:YAPYAP.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:YAPYAP.jpg&amp;diff=125"/>
		<updated>2026-03-20T23:51:30Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=YAPYAP}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Valheim.jpg&amp;diff=124</id>
		<title>File:Valheim.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Valheim.jpg&amp;diff=124"/>
		<updated>2026-03-20T23:51:30Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Valheim}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Wingspan_Game.jpg&amp;diff=123</id>
		<title>File:Wingspan Game.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Wingspan_Game.jpg&amp;diff=123"/>
		<updated>2026-03-20T23:51:30Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Wingspan}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:The_Planet_Crafter.jpg&amp;diff=122</id>
		<title>File:The Planet Crafter.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:The_Planet_Crafter.jpg&amp;diff=122"/>
		<updated>2026-03-20T23:51:27Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The Planet Crafter}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Tropico_6.jpg&amp;diff=121</id>
		<title>File:Tropico 6.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Tropico_6.jpg&amp;diff=121"/>
		<updated>2026-03-20T23:51:27Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Tropico 6}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:V_Rising.jpg&amp;diff=120</id>
		<title>File:V Rising.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:V_Rising.jpg&amp;diff=120"/>
		<updated>2026-03-20T23:51:26Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=V Rising}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Terraria_Game.jpg&amp;diff=119</id>
		<title>File:Terraria Game.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Terraria_Game.jpg&amp;diff=119"/>
		<updated>2026-03-20T23:51:22Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Terraria}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:THE_FINALS.jpg&amp;diff=118</id>
		<title>File:THE FINALS.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:THE_FINALS.jpg&amp;diff=118"/>
		<updated>2026-03-20T23:51:22Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=THE FINALS}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Tabletop_Simulator.jpg&amp;diff=117</id>
		<title>File:Tabletop Simulator.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Tabletop_Simulator.jpg&amp;diff=117"/>
		<updated>2026-03-20T23:51:22Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Tabletop Simulator}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
	<entry>
		<id>https://dev.shrimpsquad.ca/index.php?title=File:Space_Engineers.jpg&amp;diff=116</id>
		<title>File:Space Engineers.jpg</title>
		<link rel="alternate" type="text/html" href="https://dev.shrimpsquad.ca/index.php?title=File:Space_Engineers.jpg&amp;diff=116"/>
		<updated>2026-03-20T23:51:19Z</updated>

		<summary type="html">&lt;p&gt;Blippy: Uploaded a work by Valve Inc. from https://store.steampowered.com/ with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Space Engineers}}&lt;br /&gt;
|date=2026-03-20&lt;br /&gt;
|source=https://store.steampowered.com/&lt;br /&gt;
|author=Valve Inc.&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{subst:uwl}}&lt;/div&gt;</summary>
		<author><name>Blippy</name></author>
	</entry>
</feed>