<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://cc-wiki.duckdns.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cominixo</id>
	<title>CC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://cc-wiki.duckdns.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cominixo"/>
	<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/wiki/Special:Contributions/Cominixo"/>
	<updated>2026-04-06T01:07:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.1</generator>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=119</id>
		<title>Celeste Classic</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=119"/>
		<updated>2024-01-07T02:48:14Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Make links to potential berry page point to &amp;quot;strawberry&amp;quot; (singular)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Games]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
{{mod|image=[[Cc cover.png]]|creators=[[Noel Berry, Maddy Thorson]]|date=2015-07-21|lexaloffle=https://www.lexaloffle.com/bbs/?pid=11722#p|itch.io=https://maddymakesgamesinc.itch.io/celesteclassic}}&lt;br /&gt;
&lt;br /&gt;
Celeste Classic is a 2D platforming game for the [[PICO-8]] fantasy console, released in 2015 by Maddy Thorson and Noel Berry&amp;lt;ref&amp;gt;https://www.lexaloffle.com/bbs/?tid=2145&amp;lt;/ref&amp;gt;.&lt;br /&gt;
The game follows [[Madeline|a girl]] as she attempts to summit a roughly 3050m tall [[Celeste Mountain|mountain]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CELESTE was initially created over four days for a game jam, and was heavily praised by the [[PICO-8]] community on release, becoming the most starred post on the Lexaloffle BBS. It&#039;s sudden popularity inspired Maddy and Noel to develop a the much more well known sequel in 2018. it&#039;s currently considered one of the classic [[PICO-8]] games and holds an active community.&lt;br /&gt;
&lt;br /&gt;
== Gameplay ==&lt;br /&gt;
There are thirty single-screen levels that the player must complete. Each level is named as a 100-meter section of the mountain starting from 100m. A level is completed by touching the top of the screen (climbing that section of the mountain). Once the player completes 3000m, they reach the summit where a flag displays the total time it took to complete the game alongside the player&#039;s strawberry count.&lt;br /&gt;
&lt;br /&gt;
The player can control [[Madeline]] (the climber), to perform three main actions. The left and right arrow keys move the player left and right, while the up and down keys make Madeline look up or down. Pressing Z or C makes Madeline jump into the air (or off of walls if in contact with one), and pressing X makes Madeline dash.&lt;br /&gt;
&lt;br /&gt;
=== Dashing ===&lt;br /&gt;
Dashing is a very versatile ability that propels Madeline in any one of 8 directions of the player&#039;s choosing, depending on which arrow keys are held down. For example, the player can dash straight down by pressing X when only the down arrow is held. If you hold down two non-opposing directions, Madeline will dash diagonally. Dashing is special in that it is limited. After dashing, Madeline&#039;s hair will turn blue, and the player cannot dash until Madeline regains her red hair. This can be done by touching the ground, collecting a [[Balloon|balloon]], or collecting a [[Strawberry|strawberry]]. &lt;br /&gt;
&lt;br /&gt;
== Collectibles ==&lt;br /&gt;
Eighteen levels of the thirty have collectible [[Strawberry|strawberries]]. The player can collect a strawberry by touching it, triggering an animation showing that 1000 points have been obtained. These points serve no purpose and change nothing.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Balloon&amp;diff=118</id>
		<title>Balloon</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Balloon&amp;diff=118"/>
		<updated>2024-01-07T02:43:55Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Add ballon respawn time&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Balloons are floating objects that restore your dash when Madeline collides with them. They float in the air and bob up and down slightly. When collected, they respawn after 60 frames (2 seconds). &lt;br /&gt;
&lt;br /&gt;
[[File:600m Balloon still.png|thumb|A balloon in the &#039;600m&#039; level of [[Celeste Classic]]]]&lt;br /&gt;
&lt;br /&gt;
== Original Code ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
balloon = {&lt;br /&gt;
	tile=22,&lt;br /&gt;
	init=function(this) &lt;br /&gt;
		this.offset=rnd(1)&lt;br /&gt;
		this.start=this.y&lt;br /&gt;
		this.timer=0&lt;br /&gt;
		this.hitbox={x=-1,y=-1,w=10,h=10}&lt;br /&gt;
	end,&lt;br /&gt;
	update=function(this) &lt;br /&gt;
		if this.spr==22 then&lt;br /&gt;
			this.offset+=0.01&lt;br /&gt;
			this.y=this.start+sin(this.offset)*2&lt;br /&gt;
			local hit = this.collide(player,0,0)&lt;br /&gt;
			if hit~=nil and hit.djump&amp;lt;max_djump then&lt;br /&gt;
				psfx(6)&lt;br /&gt;
				init_object(smoke,this.x,this.y)&lt;br /&gt;
				hit.djump=max_djump&lt;br /&gt;
				this.spr=0&lt;br /&gt;
				this.timer=60&lt;br /&gt;
			end&lt;br /&gt;
		elseif this.timer&amp;gt;0 then&lt;br /&gt;
			this.timer-=1&lt;br /&gt;
		else &lt;br /&gt;
		 psfx(7)&lt;br /&gt;
		 init_object(smoke,this.x,this.y)&lt;br /&gt;
			this.spr=22 &lt;br /&gt;
		end&lt;br /&gt;
	end,&lt;br /&gt;
	draw=function(this)&lt;br /&gt;
		if this.spr==22 then&lt;br /&gt;
			spr(13+(this.offset*8)%3,this.x,this.y+6)&lt;br /&gt;
			spr(this.spr,this.x,this.y)&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=117</id>
		<title>Celeste Classic</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=117"/>
		<updated>2024-01-07T02:42:13Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: ADd some sections&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Games]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
{{mod|image=[[Cc cover.png]]|creators=[[Noel Berry, Maddy Thorson]]|date=2015-07-21|lexaloffle=https://www.lexaloffle.com/bbs/?pid=11722#p|itch.io=https://maddymakesgamesinc.itch.io/celesteclassic}}&lt;br /&gt;
&lt;br /&gt;
Celeste Classic is a 2D platforming game for the [[PICO-8]] fantasy console, released in 2015 by Maddy Thorson and Noel Berry&amp;lt;ref&amp;gt;https://www.lexaloffle.com/bbs/?tid=2145&amp;lt;/ref&amp;gt;.&lt;br /&gt;
The game follows [[Madeline|a girl]] as she attempts to summit a roughly 3050m tall [[Celeste Mountain|mountain]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CELESTE was initially created over four days for a game jam, and was heavily praised by the [[PICO-8]] community on release, becoming the most starred post on the Lexaloffle BBS. It&#039;s sudden popularity inspired Maddy and Noel to develop a the much more well known sequel in 2018. it&#039;s currently considered one of the classic [[PICO-8]] games and holds an active community.&lt;br /&gt;
&lt;br /&gt;
== Gameplay ==&lt;br /&gt;
There are thirty single-screen levels that the player must complete. Each level is named as a 100-meter section of the mountain starting from 100m. A level is completed by touching the top of the screen (climbing that section of the mountain). Once the player completes 3000m, they reach the summit where a flag displays the total time it took to complete the game alongside the player&#039;s strawberry count.&lt;br /&gt;
&lt;br /&gt;
The player can control [[Madeline]] (the climber), to perform three main actions. The left and right arrow keys move the player left and right, while the up and down keys make Madeline look up or down. Pressing Z or C makes Madeline jump into the air (or off of walls if in contact with one), and pressing X makes Madeline dash.&lt;br /&gt;
&lt;br /&gt;
=== Dashing ===&lt;br /&gt;
Dashing is a very versatile ability that propels Madeline in any one of 8 directions of the player&#039;s choosing, depending on which arrow keys are held down. For example, the player can dash straight down by pressing X when only the down arrow is held. If you hold down two non-opposing directions, Madeline will dash diagonally. Dashing is special in that it is limited. After dashing, Madeline&#039;s hair will turn blue, and the player cannot dash until Madeline regains her red hair. This can be done by touching the ground, collecting a [[Balloon|balloon]], or collecting a [[Strawberries|strawberry]]. &lt;br /&gt;
&lt;br /&gt;
== Collectibles ==&lt;br /&gt;
Eighteen levels of the thirty have collectible [[Strawberries|strawberries]]. The player can collect a strawberry by touching it, triggering an animation showing that 1000 points have been obtained. These points serve no purpose and change nothing.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=80</id>
		<title>Madeline</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=80"/>
		<updated>2023-12-31T15:24:35Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Remove age entry&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Characters]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
{{Disputed}}&lt;br /&gt;
{{Character|status=Alive|appears=[[Celeste Classic]] (disputed)|creator=[[Noel Berry]], [[Maddy Thorson]]|image=Maddy.png}}&lt;br /&gt;
&lt;br /&gt;
Madeline is the name of [[Celeste Classic]]&#039;s protagonist (disputed).&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Caroline_(character)&amp;diff=79</id>
		<title>Caroline (character)</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Caroline_(character)&amp;diff=79"/>
		<updated>2023-12-31T15:21:37Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Fix formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This article is about the character from the [[Foreverred]] series. For the mod, see [[Caroline]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
{{Character|appears=[[Everred]]&lt;br /&gt;
&lt;br /&gt;
[[Foreverred]]&lt;br /&gt;
&lt;br /&gt;
[[Climbmod]]&lt;br /&gt;
&lt;br /&gt;
[[Foreverred 2: Beyond the Mountain]]|creator=[[petthepetra]]|image=caroline_foreverred2.png|status=eating burger|title=Caroline}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Everred&amp;diff=78</id>
		<title>Everred</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Everred&amp;diff=78"/>
		<updated>2023-12-31T15:20:29Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Remove random wiki url&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
{{Mod|image=[[Everred-0.p8.png]]|engine=[[Celeste Classic]]|creator=[[petthepetra]]|date=2019-11-21|lexaloffle=https://www.lexaloffle.com/bbs/?tid=35994|itch.io=https://petthepetra.itch.io/everred}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This article is about the original mod released in 2019. For the remake, see [[Foreverred]]. For the mountain, see [[Mt. Everred]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Everred is a mod of [[Celeste Classic]], released in 2019 by [[User:Petthepetra|petthepetra]] and later overhauled in the form of [[Foreverred]]. The game stars a new protagonist, named [[Caroline]], as she climbs the titular [[Mt. Everred]]. The mod uniquely initially gives the player 2 dashes and later gives them a third. It was also one of the first mods to include a secret route in the form of [[trueskip]], which can be accessed by skipping the first gem and beating 1000m, giving access to a set of harder levels. Including both summits, it features 18 levels in its normal and [[gemskip]] routes in addition to 5 extra levels in its [[trueskip]] route.&lt;br /&gt;
[[Category:Games]]&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=59</id>
		<title>Celeste Classic</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=59"/>
		<updated>2023-12-31T02:29:00Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Add links to PICO-8 page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Games]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
&lt;br /&gt;
{{game&lt;br /&gt;
|title = Celeste Classic&lt;br /&gt;
|release = 2015-07-21&lt;br /&gt;
|authors = Noel Berry, Maddy Thorson&lt;br /&gt;
|image = Cc cover.png&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Celeste Classic is a 2D platforming game for the [[PICO-8]] fantasy console, released in 2015 by Maddy Thorson and Noel Berry&amp;lt;ref&amp;gt;https://www.lexaloffle.com/bbs/?tid=2145&amp;lt;/ref&amp;gt;.&lt;br /&gt;
The game follows [[Madeline|a girl]] as she attempts to summit a roughly 3050m tall mountain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CELESTE was initially created over four days for a game jam, and was heavily praised by the [[PICO-8]] community on release, becoming the most starred post on the Lexaloffle BBS. It&#039;s sudden popularity inspired Maddy and Noel to develop a the much more well known sequel in 2018. it&#039;s currently considered one of the classic [[PICO-8]] games and holds an active community.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Everred&amp;diff=57</id>
		<title>Everred</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Everred&amp;diff=57"/>
		<updated>2023-12-31T02:01:45Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Games]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
{{Mod|image=[[Everred-0.p8.png]]|engine=[[Celeste Classic]]|creator=[[petthepetra]]|date=2019-11-21|lexaloffle=https://www.lexaloffle.com/bbs/?tid=35994|itch.io=https://petthepetra.itch.io/everred}}&lt;br /&gt;
&lt;br /&gt;
Everred is a mod.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Category:Stub&amp;diff=56</id>
		<title>Category:Stub</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Category:Stub&amp;diff=56"/>
		<updated>2023-12-31T01:59:29Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created blank page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Stub&amp;diff=55</id>
		<title>Template:Stub</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Stub&amp;diff=55"/>
		<updated>2023-12-31T01:59:06Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;[[Category:Stub]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
{{Ambox|text=This article is a stub. You can help by expanding it!|type=style}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=54</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=54"/>
		<updated>2023-12-31T01:47:25Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;topbanner&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:1.6em&amp;quot;&amp;gt;Welcome to the Celeste Classic Wiki!&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:90%&amp;quot;&amp;gt;&amp;lt;br&amp;gt;[[Special:Statistics|{{NUMBEROFUSERS}}]] users are editing [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;gamescategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Games &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
{{#dpl:&lt;br /&gt;
  |category = Games&lt;br /&gt;
  |ordermethod = firstedit&lt;br /&gt;
}}&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;charscategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Characters &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
{{#dpl:&lt;br /&gt;
  |category = Characters&lt;br /&gt;
  |ordermethod = firstedit&lt;br /&gt;
}}&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A lot of stuff is still being built, check out the [[Editing Guide]] if you want to get started with writing!&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Category:Pages_using_DynamicPageList3_parser_function&amp;diff=53</id>
		<title>Category:Pages using DynamicPageList3 parser function</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Category:Pages_using_DynamicPageList3_parser_function&amp;diff=53"/>
		<updated>2023-12-31T01:42:45Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;__HIDDENCAT__&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__HIDDENCAT__&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=52</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=52"/>
		<updated>2023-12-31T01:41:21Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;topbanner&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:1.6em&amp;quot;&amp;gt;Welcome to the Celeste Classic Wiki!&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:90%&amp;quot;&amp;gt;&amp;lt;br&amp;gt;[[Special:Statistics|{{NUMBEROFUSERS}}]] users are editing [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;gamescategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Games &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
{{#dpl:&lt;br /&gt;
  |category = Games&lt;br /&gt;
  |ordermethod = firstedit&lt;br /&gt;
}}&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;charscategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Characters &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
{{#dpl:&lt;br /&gt;
  |category = Characters&lt;br /&gt;
  |ordermethod = firstedit&lt;br /&gt;
}}&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A lot of stuff is still being built, check out the [[Editing Guide]] if you want to get started with writing!&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Extension_DPL&amp;diff=51</id>
		<title>Template:Extension DPL</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Extension_DPL&amp;diff=51"/>
		<updated>2023-12-31T01:37:07Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;&amp;lt;noinclude&amp;gt; Blank template for the dynamic lists used in the main page, just ignore &amp;lt;/noinclude&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
Blank template for the dynamic lists used in the main page, just ignore&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Barri&amp;diff=50</id>
		<title>Barri</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Barri&amp;diff=50"/>
		<updated>2023-12-31T01:33:20Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Characters]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Barri&#039;&#039; is a barrel-shaped character from the mod [[Barrels 2: Barri&#039;s Trek]]. It is unknown whether or not it is sentient, but as it&#039;s controlled by the player that is a possibility.&lt;br /&gt;
&lt;br /&gt;
{{Character|status=Alive (?)|age=Unknown|appears=[[Barrels 2: Barri&#039;s Trek]]|creator=[[Calverin]]|image=Barri.png}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=49</id>
		<title>Madeline</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=49"/>
		<updated>2023-12-31T01:32:53Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Characters]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
{{Disputed}}&lt;br /&gt;
{{Character|status=Alive|age=Unknown|appears=[[Celeste Classic]] (disputed)|creator=[[Noel Berry]], [[Maddy Thorson]]|image=Maddy.png}}&lt;br /&gt;
&lt;br /&gt;
Madeline is assumed to be [[Celeste Classic]]&#039;s protagonist, although this is not always considered factually accurate.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=48</id>
		<title>Celeste Classic</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=48"/>
		<updated>2023-12-31T01:32:33Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Games]]&lt;br /&gt;
{{Stub}}&lt;br /&gt;
&lt;br /&gt;
{{game&lt;br /&gt;
|title = Celeste Classic&lt;br /&gt;
|release = 2015-07-21&lt;br /&gt;
|authors = Noel Berry, Maddy Thorson&lt;br /&gt;
|image = Cc cover.png&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Celeste Classic is a 2D platforming game for the [[PICO-8]] fantasy console, released in 2015 by Maddy Thorson and Noel Berry&amp;lt;ref&amp;gt;https://www.lexaloffle.com/bbs/?tid=2145&amp;lt;/ref&amp;gt;.&lt;br /&gt;
The game follows [[Madeline|a girl]] as she attempts to summit a 3100m tall mountain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
CELESTE was initially created over four days for a game jam, and was heavily praised by the PICO-8 community on release, becoming the most starred post on the BBS. It&#039;s sudden popularity inspired Maddy and Noel to develop a the much more well known sequel in 2018. it&#039;s currently considered one of the classic PiCO-8 games and holds an active community.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Everred&amp;diff=47</id>
		<title>Everred</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Everred&amp;diff=47"/>
		<updated>2023-12-31T01:32:12Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Games]]&lt;br /&gt;
{{Mod|image=[[Everred-0.p8.png]]|engine=[[Celeste Classic]]|creator=[[petthepetra]]|date=2019-11-21|lexaloffle=https://www.lexaloffle.com/bbs/?tid=35994|itch.io=https://petthepetra.itch.io/everred}}&lt;br /&gt;
&lt;br /&gt;
Everred is a mod.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Category:Characters&amp;diff=46</id>
		<title>Category:Characters</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Category:Characters&amp;diff=46"/>
		<updated>2023-12-31T01:31:28Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created blank page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Category:Games&amp;diff=45</id>
		<title>Category:Games</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Category:Games&amp;diff=45"/>
		<updated>2023-12-31T01:30:59Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created blank page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=44</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=44"/>
		<updated>2023-12-31T00:59:27Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;topbanner&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:1.6em&amp;quot;&amp;gt;Welcome to the Celeste Classic Wiki!&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:90%&amp;quot;&amp;gt;&amp;lt;br&amp;gt;[[Special:Statistics|{{NUMBEROFUSERS}}]] users are editing [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;gamescategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Games &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;column-count:1&amp;quot;&amp;gt;&lt;br /&gt;
* [[Celeste Classic]]&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;charscategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Characters &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;column-count:1&amp;quot;&amp;gt;&lt;br /&gt;
* [[Madeline]]&lt;br /&gt;
* [[Barri]]&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A lot of stuff is still being built, check out the [[Editing Guide]] if you want to get started with writing!&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=37</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=37"/>
		<updated>2023-12-31T00:32:03Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;topbanner&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: center; margin: auto;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:1.6em&amp;quot;&amp;gt;Welcome to the Celeste Classic Wiki!&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div style=&amp;quot;font-size:90%&amp;quot;&amp;gt;&amp;lt;br&amp;gt;[[Special:Statistics|{{NUMBEROFUSERS}}]] users are editing [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;gamescategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Games &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;min-margin: 200px;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     &amp;lt;ul style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;li&amp;gt;[[Celeste Classic]]&amp;lt;/li&amp;gt;&lt;br /&gt;
     &amp;lt;/ul&amp;gt; &lt;br /&gt;
     &amp;lt;ul style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;!-- Blank list for future use (continues list horizontally) --&amp;gt;&lt;br /&gt;
     &amp;lt;/ul&amp;gt; &lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;charscategory&amp;quot; style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;font-size:1.6em;margin: auto;padding: 10px&amp;quot;&amp;gt; Characters &amp;lt;/div&amp;gt;&lt;br /&gt;
  &amp;lt;div style=&amp;quot;text-align: left; margin: auto;min-margin: 200px;border: solid;padding: 10px&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
     &amp;lt;ul style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;li&amp;gt;[[Madeline]]&amp;lt;/li&amp;gt;&lt;br /&gt;
      &amp;lt;li&amp;gt;[[Barri]]&amp;lt;/li&amp;gt;&lt;br /&gt;
     &amp;lt;/ul&amp;gt; &lt;br /&gt;
     &amp;lt;ul style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;!-- Blank list for future use (continues list horizontally) --&amp;gt;&lt;br /&gt;
     &amp;lt;/ul&amp;gt; &lt;br /&gt;
  &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A lot of stuff is still being built, check out the [[Editing Guide]] if you want to get started with writing!&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=36</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=36"/>
		<updated>2023-12-30T23:54:36Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;vectoronly mp-topbanner&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center; margin: 0 auto&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:1.6em&amp;quot;&amp;gt;Welcome to the Celeste Classic Wiki!&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;font-size:90%&amp;quot;&amp;gt;&amp;lt;br&amp;gt;[[Special:Statistics|{{NUMBEROFUSERS}}]] users are editing [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A lot of stuff is still being built, check out the [[Editing Guide]] if you want to get started with writing!&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=33</id>
		<title>Celeste Classic</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=33"/>
		<updated>2023-12-30T22:27:08Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
{{game&lt;br /&gt;
|title = Celeste Classic&lt;br /&gt;
|release = 2015-07-21&lt;br /&gt;
|authors = Noel Berry, Maddy Thorson&lt;br /&gt;
|image = Cc cover.png&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Celeste Classic is a 2D platforming game released for the [[PICO-8]] virtual console, released in 2015&amp;lt;ref&amp;gt;https://www.lexaloffle.com/bbs/?tid=2145&amp;lt;/ref&amp;gt;.&lt;br /&gt;
The game follows [[Madeline|a girl]] as she climbs a 3000m tall mountain in order to get to the summit.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=32</id>
		<title>Celeste Classic</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=32"/>
		<updated>2023-12-30T22:26:14Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
{{game&lt;br /&gt;
|title = Celeste Classic&lt;br /&gt;
|release = 2015-07-21&lt;br /&gt;
|authors = Noel Berry, Maddy Thorson&lt;br /&gt;
|image = Cc cover.png&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Celeste Classic is a 2D platforming game released for the [[PICO-8]] virtual console, released in 2015.&lt;br /&gt;
The game follows [[Madeline|a girl]] as she climbs a 3000m tall mountain in order to get to the summit.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=31</id>
		<title>Madeline</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=31"/>
		<updated>2023-12-30T22:22:05Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
{{Disputed}}&lt;br /&gt;
{{Character|status=Alive|age=Unknown|appears=[[Celeste Classic]] (disputed)|creator=[[Noel Berry]], [[Maddy Thorson]]|image=Maddy.png}}&lt;br /&gt;
&lt;br /&gt;
Madeline is assumed to be [[Celeste Classic]]&#039;s protagonist, although this is not always considered factually accurate.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=30</id>
		<title>Madeline</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Madeline&amp;diff=30"/>
		<updated>2023-12-30T22:16:00Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{Disputed}} {{Character|status=Alive|age=Unknown|appears=Celeste Classic (disputed)|creator=Noel Berry, Maddy Thorson|image=Maddy.png}}  Madeline is assumed to be Celeste Classic&amp;#039;s protagonist, although this is not always considered factually accurate.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Disputed}}&lt;br /&gt;
{{Character|status=Alive|age=Unknown|appears=[[Celeste Classic]] (disputed)|creator=[[Noel Berry]], [[Maddy Thorson]]|image=Maddy.png}}&lt;br /&gt;
&lt;br /&gt;
Madeline is assumed to be [[Celeste Classic]]&#039;s protagonist, although this is not always considered factually accurate.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=File:Maddy.png&amp;diff=29</id>
		<title>File:Maddy.png</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=File:Maddy.png&amp;diff=29"/>
		<updated>2023-12-30T22:11:46Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Disputed&amp;diff=28</id>
		<title>Template:Disputed</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Disputed&amp;diff=28"/>
		<updated>2023-12-30T22:08:00Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{Ambox | name  = Disputed | type  = notice | class = ambox-disputed | issue = This article&amp;#039;s &amp;#039;&amp;#039;&amp;#039;factual accuracy is disputed&amp;#039;&amp;#039;&amp;#039;. | fix   = Please help to ensure that disputed statements are reliably sourced. }}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Ambox&lt;br /&gt;
| name  = Disputed&lt;br /&gt;
| type  = notice&lt;br /&gt;
| class = ambox-disputed&lt;br /&gt;
| issue = This article&#039;s &#039;&#039;&#039;factual accuracy is [[Wikipedia:Accuracy dispute|disputed]]&#039;&#039;&#039;.&lt;br /&gt;
| fix   = Please help to ensure that disputed statements are [[Wikipedia:Reliable sources|reliably sourced]].&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=PICO-8&amp;diff=27</id>
		<title>PICO-8</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=PICO-8&amp;diff=27"/>
		<updated>2023-12-30T21:57:40Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{Stub}}  PICO-8 is the fantasy console where Celeste Classic, Celeste Classic 2: Lani&amp;#039;s Trek and its mods were created on.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
PICO-8 is the fantasy console where [[Celeste Classic]], [[Celeste Classic 2: Lani&#039;s Trek]] and its mods were created on.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Barri&amp;diff=26</id>
		<title>Barri</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Barri&amp;diff=26"/>
		<updated>2023-12-30T21:54:51Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Barri&#039;&#039; is a barrel-shaped character from the mod [[Barrels 2: Barri&#039;s Trek]]. It is unknown whether or not it is sentient, but as it&#039;s controlled by the player that is a possibility.&lt;br /&gt;
&lt;br /&gt;
{{Character|status=Alive (?)|age=Unknown|appears=[[Barrels 2: Barri&#039;s Trek]]|creator=[[Calverin]]|image=Barri.png}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=25</id>
		<title>Celeste Classic</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Celeste_Classic&amp;diff=25"/>
		<updated>2023-12-30T21:53:42Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{Stub}}  {{game |title = Celeste Classic |release = 2015-07-25 |authors = Noel Berry, Maddy Thorson |image = Cc cover.png }}  Celeste Classic is a 2D platforming game released for the PICO-8 virtual console, released in 2015. The game follows a girl as she climbs a 3000m tall mountain in order to get to the summit.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
{{game&lt;br /&gt;
|title = Celeste Classic&lt;br /&gt;
|release = 2015-07-25&lt;br /&gt;
|authors = Noel Berry, Maddy Thorson&lt;br /&gt;
|image = Cc cover.png&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Celeste Classic is a 2D platforming game released for the [[PICO-8]] virtual console, released in 2015.&lt;br /&gt;
The game follows [[Madeline|a girl]] as she climbs a 3000m tall mountain in order to get to the summit.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=File:Cc_cover.png&amp;diff=24</id>
		<title>File:Cc cover.png</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=File:Cc_cover.png&amp;diff=24"/>
		<updated>2023-12-30T21:47:35Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: The cover image for the Celeste Classic PICO-8 cart.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
The cover image for the Celeste Classic PICO-8 cart.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Barri&amp;diff=23</id>
		<title>Barri</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Barri&amp;diff=23"/>
		<updated>2023-12-30T21:43:47Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{Stub}}  &amp;#039;&amp;#039;Barri&amp;#039;&amp;#039; is a barrel-shaped character from the mod Barreleste2 (Barri&amp;#039;s trek). It is unknown whether or not it is sentient, but as it&amp;#039;s controlled by the player that is a possibility.  {{Character|status=Alive (?)|age=Unknown|appears=Barrels 2: Barri&amp;#039;s Trek|creator=Calverin|image=Barri.png}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Barri&#039;&#039; is a barrel-shaped character from the mod Barreleste2 (Barri&#039;s trek). It is unknown whether or not it is sentient, but as it&#039;s controlled by the player that is a possibility.&lt;br /&gt;
&lt;br /&gt;
{{Character|status=Alive (?)|age=Unknown|appears=[[Barrels 2: Barri&#039;s Trek]]|creator=[[Calverin]]|image=Barri.png}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=File:Barri.png&amp;diff=22</id>
		<title>File:Barri.png</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=File:Barri.png&amp;diff=22"/>
		<updated>2023-12-30T21:43:22Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Barri from the Celeste Classic 2 mod Barrels 2: Barri&amp;#039;s Trek.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Barri from the Celeste Classic 2 mod Barrels 2: Barri&#039;s Trek.&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=21</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=21"/>
		<updated>2023-12-30T02:09:12Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
== Welcome to the Celeste Classic Wiki! ==&lt;br /&gt;
&lt;br /&gt;
This wiki has [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A lot of stuff is still being built, check out the [[Editing Guide]] if you want to get started with writing!&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Editing_Guide&amp;diff=18</id>
		<title>Editing Guide</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Editing_Guide&amp;diff=18"/>
		<updated>2023-12-22T02:51:34Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;Hey! This page is here to help new people with editing and creating pages in the wiki. All the basic MediaWiki editing knowledge applies, so this page will just point out more specific things like the [https://www.mediawiki.org/wiki/Help:Templates templates] that are available, doing citations and infoboxes.  ==Theme== Because this wiki&amp;#039;s default theme uses the PICO-8 font, capitalized characters are the same as non-capitalized ones. However, people may still choose...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hey! This page is here to help new people with editing and creating pages in the wiki. All the basic MediaWiki editing knowledge applies, so this page will just point out more specific things like the [https://www.mediawiki.org/wiki/Help:Templates templates] that are available, doing citations and infoboxes.&lt;br /&gt;
&lt;br /&gt;
==Theme==&lt;br /&gt;
Because this wiki&#039;s default theme uses the [[PICO-8]] font, capitalized characters are the same as non-capitalized ones. However, people may still choose to use other skins. Because of this, it&#039;s recommended to always capitalize your text properly (you can check this in the source editor when editing a page).&lt;br /&gt;
&lt;br /&gt;
==Templates==&lt;br /&gt;
You can see all the templates available by using the search function (they&#039;ll be in the Template namespace and will have a &amp;quot;Template:&amp;quot; prefix).&lt;br /&gt;
Templates can be used by typing &amp;lt;nowiki&amp;gt;{{templatename}}&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
The most useful ones right now are:&lt;br /&gt;
* [[Template:Stub]]&lt;br /&gt;
* [[Template:Citation needed]]&lt;br /&gt;
* [[Template:Ambox]] (for making message boxes like the stub one)&lt;br /&gt;
&lt;br /&gt;
==Infoboxes==&lt;br /&gt;
Infoboxes are defined as templates (there aren&#039;t a lot right now), and you can make one appear the same way as a template, while also adding arguments!&lt;br /&gt;
Here&#039;s an example using [[Template:Game]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
{{game&lt;br /&gt;
|title = Celeste Classic&lt;br /&gt;
|release = 2015&lt;br /&gt;
|authors = Noel Berry, Maddy Thorson&lt;br /&gt;
|image = Cc cover.png&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Images will need to be uploaded to the server before being used, see [[Special:Upload]].&lt;br /&gt;
&lt;br /&gt;
You can create your own Infobox template using the [[Special:InfoboxBuilder|Infobox Builder!]]&lt;br /&gt;
&lt;br /&gt;
==Citations==&lt;br /&gt;
You can (and should, when possible) add citations to your work. To do this, simply add a &amp;lt;nowiki&amp;gt;&amp;lt;ref&amp;gt;&amp;lt;/nowiki&amp;gt; tag after the text, for example:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Testing!&amp;lt;ref&amp;gt;This is a reference!&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
is written as: &amp;lt;nowiki&amp;gt;&amp;lt;ref&amp;gt;This is a reference!&amp;lt;/ref&amp;gt;&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
References are always added at the bottom of the page, so you should add a header to indicate where they start, like so: &amp;lt;nowiki&amp;gt;==References==&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is what&#039;s being done below!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In case you can&#039;t add a citation to something that you think should have one, use the [[Template:Citation needed|Citation needed]] template!&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=17</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Main_Page&amp;diff=17"/>
		<updated>2023-12-22T01:57:05Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Welcome to the Celeste Classic Wiki!&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A lot of stuff is still being built, check out the [[Editing Guide]] if you want to get started with writing!&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=File:Nerdelie.png&amp;diff=16</id>
		<title>File:Nerdelie.png</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=File:Nerdelie.png&amp;diff=16"/>
		<updated>2023-12-22T01:56:40Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=File:Babelie.png&amp;diff=15</id>
		<title>File:Babelie.png</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=File:Babelie.png&amp;diff=15"/>
		<updated>2023-12-22T01:56:31Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Citation_needed&amp;diff=14</id>
		<title>Template:Citation needed</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Citation_needed&amp;diff=14"/>
		<updated>2023-12-22T01:56:14Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;&amp;#039;&amp;#039;citation needed&amp;#039;&amp;#039;&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;sup&amp;gt;&amp;lt;nowiki&amp;gt;[&amp;lt;/nowiki&amp;gt;&#039;&#039;[[wikipedia:Citation needed|citation needed]]&#039;&#039;&amp;lt;nowiki&amp;gt;]&amp;lt;/nowiki&amp;gt;&amp;lt;/sup&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Game&amp;diff=13</id>
		<title>Template:Game</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Game&amp;diff=13"/>
		<updated>2023-12-22T01:55:17Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;&amp;lt;infobox&amp;gt;&amp;lt;title source=&amp;quot;title&amp;quot;&amp;gt;&amp;lt;default&amp;gt;{{PAGENAME}}&amp;lt;/default&amp;gt;&amp;lt;/title&amp;gt;&amp;lt;image source=&amp;quot;image&amp;quot;/&amp;gt;&amp;lt;data source=&amp;quot;release&amp;quot;&amp;gt;&amp;lt;label&amp;gt;release date&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;authors&amp;quot;&amp;gt;&amp;lt;label&amp;gt;authors&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;/infobox&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;infobox&amp;gt;&amp;lt;title source=&amp;quot;title&amp;quot;&amp;gt;&amp;lt;default&amp;gt;{{PAGENAME}}&amp;lt;/default&amp;gt;&amp;lt;/title&amp;gt;&amp;lt;image source=&amp;quot;image&amp;quot;/&amp;gt;&amp;lt;data source=&amp;quot;release&amp;quot;&amp;gt;&amp;lt;label&amp;gt;release date&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;authors&amp;quot;&amp;gt;&amp;lt;label&amp;gt;authors&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;/infobox&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Character&amp;diff=12</id>
		<title>Template:Character</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Character&amp;diff=12"/>
		<updated>2023-12-22T01:54:54Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;&amp;lt;infobox&amp;gt;&amp;lt;title source=&amp;quot;title&amp;quot;&amp;gt;&amp;lt;default&amp;gt;{{PAGENAME}}&amp;lt;/default&amp;gt;&amp;lt;/title&amp;gt;&amp;lt;image source=&amp;quot;image&amp;quot;/&amp;gt;&amp;lt;data source=&amp;quot;appears&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Appears In&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;creator&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Creator&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;age&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Age&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;status&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Status&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;/infobox&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;infobox&amp;gt;&amp;lt;title source=&amp;quot;title&amp;quot;&amp;gt;&amp;lt;default&amp;gt;{{PAGENAME}}&amp;lt;/default&amp;gt;&amp;lt;/title&amp;gt;&amp;lt;image source=&amp;quot;image&amp;quot;/&amp;gt;&amp;lt;data source=&amp;quot;appears&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Appears In&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;creator&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Creator&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;age&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Age&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;data source=&amp;quot;status&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Status&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;/infobox&amp;gt;&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Stub&amp;diff=11</id>
		<title>Template:Stub</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Stub&amp;diff=11"/>
		<updated>2023-12-22T01:54:37Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{Ambox|text=This article is a stub. You can help by expanding it!|type=style}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Ambox|text=This article is a stub. You can help by expanding it!|type=style}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Mbox&amp;diff=10</id>
		<title>Template:Mbox</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Mbox&amp;diff=10"/>
		<updated>2023-12-22T01:53:30Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{#invoke:Message box|mbox}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:Message box|mbox}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Template:Ambox&amp;diff=9</id>
		<title>Template:Ambox</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Template:Ambox&amp;diff=9"/>
		<updated>2023-12-22T01:48:21Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;{{#invoke:Message box|ambox}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:Message box|ambox}}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Module:Yesno&amp;diff=8</id>
		<title>Module:Yesno</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Module:Yesno&amp;diff=8"/>
		<updated>2023-12-22T01:47:22Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}.  return function (val, default) 	-- If your wiki uses non-ascii characters for any of &amp;quot;yes&amp;quot;, &amp;quot;no&amp;quot;, etc., you 	-- should replace &amp;quot;val:lower()&amp;quot; with &amp;quot;mw.ustring.lower(val)&amp;quot; in the 	-- following line. 	val = type(val) == &amp;#039;string&amp;#039; and val:lower() or val 	if val == nil then 		return nil 	elseif val == true  		or val == &amp;#039;yes&amp;#039; 		or val == &amp;#039;y&amp;#039; 		or val =...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;-- Function allowing for consistent treatment of boolean-like wikitext input.&lt;br /&gt;
-- It works similarly to the template {{yesno}}.&lt;br /&gt;
&lt;br /&gt;
return function (val, default)&lt;br /&gt;
	-- If your wiki uses non-ascii characters for any of &amp;quot;yes&amp;quot;, &amp;quot;no&amp;quot;, etc., you&lt;br /&gt;
	-- should replace &amp;quot;val:lower()&amp;quot; with &amp;quot;mw.ustring.lower(val)&amp;quot; in the&lt;br /&gt;
	-- following line.&lt;br /&gt;
	val = type(val) == &#039;string&#039; and val:lower() or val&lt;br /&gt;
	if val == nil then&lt;br /&gt;
		return nil&lt;br /&gt;
	elseif val == true &lt;br /&gt;
		or val == &#039;yes&#039;&lt;br /&gt;
		or val == &#039;y&#039;&lt;br /&gt;
		or val == &#039;true&#039;&lt;br /&gt;
		or val == &#039;t&#039;&lt;br /&gt;
		or val == &#039;on&#039;&lt;br /&gt;
		or tonumber(val) == 1&lt;br /&gt;
	then&lt;br /&gt;
		return true&lt;br /&gt;
	elseif val == false&lt;br /&gt;
		or val == &#039;no&#039;&lt;br /&gt;
		or val == &#039;n&#039;&lt;br /&gt;
		or val == &#039;false&#039;&lt;br /&gt;
		or val == &#039;f&#039;&lt;br /&gt;
		or val == &#039;off&#039;&lt;br /&gt;
		or tonumber(val) == 0&lt;br /&gt;
	then&lt;br /&gt;
		return false&lt;br /&gt;
	else&lt;br /&gt;
		return default&lt;br /&gt;
	end&lt;br /&gt;
end&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Module:Message_box/configuration&amp;diff=7</id>
		<title>Module:Message box/configuration</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Module:Message_box/configuration&amp;diff=7"/>
		<updated>2023-12-22T01:45:39Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;-------------------------------------------------------------------------------- --                          Message box configuration                         -- --                                                                            -- -- This module contains configuration data for Module:Message box.        -- --------------------------------------------------------------------------------  return { 	ambox = { 		types = { 			speedy = { 				class = &amp;#039;ambox-spee...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;--------------------------------------------------------------------------------&lt;br /&gt;
--                          Message box configuration                         --&lt;br /&gt;
--                                                                            --&lt;br /&gt;
-- This module contains configuration data for [[Module:Message box]].        --&lt;br /&gt;
--------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
return {&lt;br /&gt;
	ambox = {&lt;br /&gt;
		types = {&lt;br /&gt;
			speedy = {&lt;br /&gt;
				class = &#039;ambox-speedy&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon clock-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			delete = {&lt;br /&gt;
				class = &#039;ambox-delete&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon alert-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			warning = { -- alias for content&lt;br /&gt;
				class = &#039;ambox-content&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon notice-warning.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			content = {&lt;br /&gt;
				class = &#039;ambox-content&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon notice-warning.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			style = {&lt;br /&gt;
				class = &#039;ambox-style&#039;,&lt;br /&gt;
				image = &#039;babelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			move = {&lt;br /&gt;
				class = &#039;ambox-move&#039;,&lt;br /&gt;
				image = &#039;Merge-split-transwiki default.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			protection = {&lt;br /&gt;
				class = &#039;ambox-protection&#039;,&lt;br /&gt;
				image = &#039;Semi-protection-shackle-keyhole.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			notice = {&lt;br /&gt;
				class = &#039;ambox-notice&#039;,&lt;br /&gt;
				image = &#039;nerdelie.png&#039;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		default                     = &#039;notice&#039;,&lt;br /&gt;
		allowBlankParams            = {&#039;talk&#039;, &#039;sect&#039;, &#039;date&#039;, &#039;issue&#039;, &#039;fix&#039;, &#039;subst&#039;, &#039;hidden&#039;},&lt;br /&gt;
		allowSmall                  = true,&lt;br /&gt;
		smallParam                  = &#039;left&#039;,&lt;br /&gt;
		smallClass                  = &#039;mbox-small-left&#039;,&lt;br /&gt;
		substCheck                  = true,&lt;br /&gt;
		classes                     = {&#039;metadata&#039;, &#039;plainlinks&#039;, &#039;ambox&#039;},&lt;br /&gt;
		imageEmptyCell              = true,&lt;br /&gt;
		imageCheckBlank             = true,&lt;br /&gt;
		imageSmallSize              = &#039;20x20px&#039;,&lt;br /&gt;
		imageCellDiv                = true,&lt;br /&gt;
		useCollapsibleTextFields    = true,&lt;br /&gt;
		imageRightNone              = true,&lt;br /&gt;
		sectionDefault              = &#039;article&#039;,&lt;br /&gt;
		allowMainspaceCategories    = true,&lt;br /&gt;
		templateCategory            = &#039;Article message templates&#039;,&lt;br /&gt;
	        templateCategoryRequireName = true,&lt;br /&gt;
		templateErrorCategory       = nil,&lt;br /&gt;
		templateErrorParamsToCheck  = {&#039;issue&#039;, &#039;fix&#039;, &#039;subst&#039;}&lt;br /&gt;
	},&lt;br /&gt;
	&lt;br /&gt;
	cmbox = {&lt;br /&gt;
		types = {&lt;br /&gt;
			speedy = {&lt;br /&gt;
				class = &#039;cmbox-speedy&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon clock-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			delete = {&lt;br /&gt;
				class = &#039;cmbox-delete&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon alert-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			content = {&lt;br /&gt;
				class = &#039;cmbox-content&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon notice-warning.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			style = {&lt;br /&gt;
				class = &#039;cmbox-style&#039;,&lt;br /&gt;
				image = &#039;babelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			move = {&lt;br /&gt;
				class = &#039;cmbox-move&#039;,&lt;br /&gt;
				image = &#039;Merge-split-transwiki default.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			protection = {&lt;br /&gt;
				class = &#039;cmbox-protection&#039;,&lt;br /&gt;
				image = &#039;Semi-protection-shackle-keyhole.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			notice = {&lt;br /&gt;
				class = &#039;cmbox-notice&#039;,&lt;br /&gt;
				image = &#039;nerdelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			caution = {&lt;br /&gt;
				class = &#039;cmbox-style&#039;,&lt;br /&gt;
				image = &#039;Ambox warning yellow.svg&#039;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		default              = &#039;notice&#039;,&lt;br /&gt;
		showInvalidTypeError = true,&lt;br /&gt;
		classes              = {&#039;plainlinks&#039;, &#039;cmbox&#039;},&lt;br /&gt;
		imageEmptyCell       = true&lt;br /&gt;
	},&lt;br /&gt;
	&lt;br /&gt;
	fmbox = {&lt;br /&gt;
		types = {&lt;br /&gt;
			warning = {&lt;br /&gt;
				class = &#039;fmbox-warning&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon clock-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			editnotice = {&lt;br /&gt;
				class = &#039;fmbox-editnotice&#039;,&lt;br /&gt;
				image = &#039;nerdelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			system = {&lt;br /&gt;
				class = &#039;fmbox-system&#039;,&lt;br /&gt;
				image = &#039;nerdelie.png&#039;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		default              = &#039;system&#039;,&lt;br /&gt;
		showInvalidTypeError = true,&lt;br /&gt;
		classes              = {&#039;plainlinks&#039;, &#039;fmbox&#039;},&lt;br /&gt;
		imageEmptyCell       = false,&lt;br /&gt;
		imageRightNone       = false&lt;br /&gt;
	},&lt;br /&gt;
	&lt;br /&gt;
	imbox = {&lt;br /&gt;
		types = {&lt;br /&gt;
			speedy = {&lt;br /&gt;
				class = &#039;imbox-speedy&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon clock-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			delete = {&lt;br /&gt;
				class = &#039;imbox-delete&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon alert-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			content = {&lt;br /&gt;
				class = &#039;imbox-content&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon notice-warning.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			style = {&lt;br /&gt;
				class = &#039;imbox-style&#039;,&lt;br /&gt;
				image = &#039;babelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			move = {&lt;br /&gt;
				class = &#039;imbox-move&#039;,&lt;br /&gt;
				image = &#039;Merge-split-transwiki default.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			protection = {&lt;br /&gt;
				class = &#039;imbox-protection&#039;,&lt;br /&gt;
				image = &#039;Semi-protection-shackle-keyhole.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			license = {&lt;br /&gt;
				class = &#039;imbox-license licensetpl&#039;,&lt;br /&gt;
				image = &#039;Imbox-license.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			featured = {&lt;br /&gt;
				class = &#039;imbox-featured&#039;,&lt;br /&gt;
				image = &#039;Cscr-featured.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			notice = {&lt;br /&gt;
				class = &#039;imbox-notice&#039;,&lt;br /&gt;
				image = &#039;nerdelie.png&#039;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		default              = &#039;notice&#039;,&lt;br /&gt;
		showInvalidTypeError = true,&lt;br /&gt;
		classes              = {&#039;imbox&#039;},&lt;br /&gt;
		usePlainlinksParam   = true,&lt;br /&gt;
		imageEmptyCell       = true,&lt;br /&gt;
		below                = true,&lt;br /&gt;
		templateCategory     = &#039;File message boxes&#039;&lt;br /&gt;
	},&lt;br /&gt;
	&lt;br /&gt;
	ombox = {&lt;br /&gt;
		types = {&lt;br /&gt;
			speedy = {&lt;br /&gt;
				class = &#039;ombox-speedy&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon clock-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			delete = {&lt;br /&gt;
				class = &#039;ombox-delete&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon alert-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			warning = { -- alias for content&lt;br /&gt;
				class = &#039;ombox-content&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon notice-warning.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			content = {&lt;br /&gt;
				class = &#039;ombox-content&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon notice-warning.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			style = {&lt;br /&gt;
				class = &#039;ombox-style&#039;,&lt;br /&gt;
				image = &#039;babelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			move = {&lt;br /&gt;
				class = &#039;ombox-move&#039;,&lt;br /&gt;
				image = &#039;Merge-split-transwiki default.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			protection = {&lt;br /&gt;
				class = &#039;ombox-protection&#039;,&lt;br /&gt;
				image = &#039;Semi-protection-shackle-keyhole.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			notice = {&lt;br /&gt;
				class = &#039;ombox-notice&#039;,&lt;br /&gt;
				image = &#039;nerdelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			critical = {&lt;br /&gt;
				class = &#039;mbox-critical&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon clock-destructive.svg&#039;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		default              = &#039;notice&#039;,&lt;br /&gt;
		showInvalidTypeError = true,&lt;br /&gt;
		classes              = {&#039;plainlinks&#039;, &#039;ombox&#039;},&lt;br /&gt;
		allowSmall           = true,&lt;br /&gt;
		imageEmptyCell       = true,&lt;br /&gt;
		imageRightNone       = true&lt;br /&gt;
	},&lt;br /&gt;
	&lt;br /&gt;
	tmbox = {&lt;br /&gt;
		types = {&lt;br /&gt;
			speedy = {&lt;br /&gt;
				class = &#039;tmbox-speedy&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon clock-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			delete = {&lt;br /&gt;
				class = &#039;tmbox-delete&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon alert-destructive.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			content = {&lt;br /&gt;
				class = &#039;tmbox-content&#039;,&lt;br /&gt;
				image = &#039;OOjs UI icon notice-warning.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			style = {&lt;br /&gt;
				class = &#039;tmbox-style&#039;,&lt;br /&gt;
				image = &#039;babelie.png&#039;&lt;br /&gt;
			},&lt;br /&gt;
			move = {&lt;br /&gt;
				class = &#039;tmbox-move&#039;,&lt;br /&gt;
				image = &#039;Merge-split-transwiki default.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			protection = {&lt;br /&gt;
				class = &#039;tmbox-protection&#039;,&lt;br /&gt;
				image = &#039;Semi-protection-shackle-keyhole.svg&#039;&lt;br /&gt;
			},&lt;br /&gt;
			notice = {&lt;br /&gt;
				class = &#039;tmbox-notice&#039;,&lt;br /&gt;
				image = &#039;nerdelie.png&#039;&lt;br /&gt;
			}&lt;br /&gt;
		},&lt;br /&gt;
		default              = &#039;notice&#039;,&lt;br /&gt;
		showInvalidTypeError = true,&lt;br /&gt;
		classes              = {&#039;plainlinks&#039;, &#039;tmbox&#039;},&lt;br /&gt;
		allowSmall           = true,&lt;br /&gt;
		imageRightNone       = true,&lt;br /&gt;
		imageEmptyCell       = true,&lt;br /&gt;
		imageEmptyCellStyle  = true,&lt;br /&gt;
		templateCategory     = &#039;Talk message boxes&#039;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Module:Message_box/ombox.css&amp;diff=6</id>
		<title>Module:Message box/ombox.css</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Module:Message_box/ombox.css&amp;diff=6"/>
		<updated>2023-12-22T01:45:21Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;/**  * {{ombox}} (other pages message box) styles  *  * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css  * @revision 2021-07-15  */ table.ombox { 	margin: 4px 10%; 	border-collapse: collapse; 	/* Default &amp;quot;notice&amp;quot; gray */ 	border: 1px solid #a2a9b1; 	background-color: #000000; 	box-sizing: border-box; }  /* An empty narrow cell */ .ombox td.mbox-empty-cell { 	border: none; 	padding: 0; 	width: 1px; }  /* The message body cell(s) */ .ombox th.mbox-te...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/**&lt;br /&gt;
 * {{ombox}} (other pages message box) styles&lt;br /&gt;
 *&lt;br /&gt;
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css&lt;br /&gt;
 * @revision 2021-07-15&lt;br /&gt;
 */&lt;br /&gt;
table.ombox {&lt;br /&gt;
	margin: 4px 10%;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	/* Default &amp;quot;notice&amp;quot; gray */&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	background-color: #000000;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* An empty narrow cell */&lt;br /&gt;
.ombox td.mbox-empty-cell {&lt;br /&gt;
	border: none;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	width: 1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* The message body cell(s) */&lt;br /&gt;
.ombox th.mbox-text,&lt;br /&gt;
.ombox td.mbox-text {&lt;br /&gt;
	border: none;&lt;br /&gt;
	/* 0.9em left/right */&lt;br /&gt;
	padding: 0.25em 0.9em;&lt;br /&gt;
	/* Make all mboxes the same width regardless of text length */&lt;br /&gt;
	width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* The left image cell */&lt;br /&gt;
.ombox td.mbox-image {&lt;br /&gt;
	border: none;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
	/* 0.9em left, 0px right */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0 2px 0.9em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* The right image cell */&lt;br /&gt;
.ombox td.mbox-imageright {&lt;br /&gt;
	border: none;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
	/* 0px left, 0.9em right */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0.9em 2px 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-notice {&lt;br /&gt;
	/* Gray */&lt;br /&gt;
	border-color: #C2C3C7;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-speedy {&lt;br /&gt;
	/* Pink */&lt;br /&gt;
	background-color: #FF77A8;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-speedy,&lt;br /&gt;
table.ombox-delete {&lt;br /&gt;
	/* Red */&lt;br /&gt;
	border-color: #FF004D;&lt;br /&gt;
	border-width: 2px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-content {&lt;br /&gt;
	/* Orange */&lt;br /&gt;
	border-color: #FFA300;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-style {&lt;br /&gt;
	/* Yellow */&lt;br /&gt;
	border-color: #FFEC27;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-move {&lt;br /&gt;
	/* Purple */&lt;br /&gt;
	border-color: #7E2553;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ombox-protection {&lt;br /&gt;
	/* Gray-gold */&lt;br /&gt;
	border-color: #FF6C24;&lt;br /&gt;
	border-width: 2px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * {{ombox|small=1}} styles&lt;br /&gt;
 *&lt;br /&gt;
 * These &amp;quot;.mbox-small&amp;quot; classes must be placed after all other&lt;br /&gt;
 * &amp;quot;.ombox&amp;quot; classes. &amp;quot;html body.mediawiki .ombox&amp;quot;&lt;br /&gt;
 * is so they apply only to other page message boxes.&lt;br /&gt;
 *&lt;br /&gt;
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css&lt;br /&gt;
 * @revision 2021-07-15&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
/* For the &amp;quot;small=yes&amp;quot; option. */&lt;br /&gt;
html body.mediawiki .ombox.mbox-small {&lt;br /&gt;
	clear: right;&lt;br /&gt;
	float: right;&lt;br /&gt;
	margin: 4px 0 4px 1em;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
	width: 238px;&lt;br /&gt;
	font-size: 88%;&lt;br /&gt;
	line-height: 1.25em;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
	<entry>
		<id>https://cc-wiki.duckdns.org/index.php?title=Module:Message_box/ambox.css&amp;diff=5</id>
		<title>Module:Message box/ambox.css</title>
		<link rel="alternate" type="text/html" href="https://cc-wiki.duckdns.org/index.php?title=Module:Message_box/ambox.css&amp;diff=5"/>
		<updated>2023-12-22T01:45:09Z</updated>

		<summary type="html">&lt;p&gt;Cominixo: Created page with &amp;quot;/**  * {{ambox}} (article message box) styles  *  * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css  * @revision 2021-07-15  */ table.ambox { 	/* 10% = Will not overlap with other elements */ 	margin: 0 10%; 	/* Prevent overflow in narrow screens (&amp;lt;=850px) in the Timeless skin. 	   See Skin:Timeless#Less than 851 pixels 	   and https://phabricator.wikimedia.org/source/Timeless/browse/REL1_39/resources/screen-mobile.less$268 */ 	width: unset; 	b...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/**&lt;br /&gt;
 * {{ambox}} (article message box) styles&lt;br /&gt;
 *&lt;br /&gt;
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css&lt;br /&gt;
 * @revision 2021-07-15&lt;br /&gt;
 */&lt;br /&gt;
table.ambox {&lt;br /&gt;
	/* 10% = Will not overlap with other elements */&lt;br /&gt;
	margin: 0 10%;&lt;br /&gt;
	/* Prevent overflow in narrow screens (&amp;lt;=850px) in the Timeless skin.&lt;br /&gt;
	   See [[Skin:Timeless#Less than 851 pixels]]&lt;br /&gt;
	   and https://phabricator.wikimedia.org/source/Timeless/browse/REL1_39/resources/screen-mobile.less$268 */&lt;br /&gt;
	width: unset;&lt;br /&gt;
	border: 1px solid #a2a9b1;&lt;br /&gt;
	/* Default &amp;quot;notice&amp;quot; blue */&lt;br /&gt;
	border-left: 10px solid #36c;&lt;br /&gt;
	background-color: #000;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Single border between stacked boxes. */&lt;br /&gt;
table.ambox + table.ambox,&lt;br /&gt;
table.ambox + link + table.ambox,&lt;br /&gt;
table.ambox + style + table.ambox {&lt;br /&gt;
	margin-top: -1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* An empty narrow cell */&lt;br /&gt;
.ambox td.mbox-empty-cell {&lt;br /&gt;
	border: none;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	width: 1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* The message body cell(s) */&lt;br /&gt;
.ambox th.mbox-text,&lt;br /&gt;
.ambox td.mbox-text {&lt;br /&gt;
	border: none;&lt;br /&gt;
	/* 0.5em left/right */&lt;br /&gt;
	padding: 0.25em 0.5em;&lt;br /&gt;
	/* Make all mboxes the same width regardless of text length */&lt;br /&gt;
	width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* The left image cell */&lt;br /&gt;
.ambox td.mbox-image {&lt;br /&gt;
	/* 0.5em left, 0px right */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0 2px 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* The right image cell */&lt;br /&gt;
.ambox td.mbox-imageright {&lt;br /&gt;
	/* 0px left, 0.5em right */&lt;br /&gt;
	/* @noflip */&lt;br /&gt;
	padding: 2px 0.5em 2px 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-notice {&lt;br /&gt;
	/* Blue */&lt;br /&gt;
	border-left-color: #29ADFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-speedy {&lt;br /&gt;
	/* Pink */&lt;br /&gt;
	background-color: #FF77A8;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-delete,&lt;br /&gt;
table.ambox-speedy {&lt;br /&gt;
	/* Red */&lt;br /&gt;
	border-left-color: #FF004D;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-content {&lt;br /&gt;
	/* Orange */&lt;br /&gt;
	border-left-color: #FFA300;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-style {&lt;br /&gt;
	/* Blue */&lt;br /&gt;
	border-left-color: #29ADFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-move {&lt;br /&gt;
	/* Purple */&lt;br /&gt;
	border-left-color: #7E2553;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
table.ambox-protection {&lt;br /&gt;
	/* Gray-gold */&lt;br /&gt;
	border-left-color: #FF6C24;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * {{ambox|small=1}} styles&lt;br /&gt;
 *&lt;br /&gt;
 * These &amp;quot;.mbox-small&amp;quot; classes must be placed after all other&lt;br /&gt;
 * &amp;quot;.ambox&amp;quot; classes. &amp;quot;html body.mediawiki .ambox&amp;quot;&lt;br /&gt;
 * is so they override both &amp;quot;table.ambox + table.ambox&amp;quot;&lt;br /&gt;
 * and &amp;quot;table.ambox + link + table.ambox&amp;quot; above.&lt;br /&gt;
 *&lt;br /&gt;
 * @source https://www.mediawiki.org/wiki/MediaWiki:Gadget-enwp-boxes.css&lt;br /&gt;
 * @revision 2021-07-15&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
/* For the &amp;quot;small=yes&amp;quot; option. */&lt;br /&gt;
html body.mediawiki .ambox.mbox-small {&lt;br /&gt;
	clear: right;&lt;br /&gt;
	float: right;&lt;br /&gt;
	margin: 4px 0 4px 1em;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
	width: 238px;&lt;br /&gt;
	font-size: 88%;&lt;br /&gt;
	line-height: 1.25em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* For the &amp;quot;small=left&amp;quot; option. */&lt;br /&gt;
html body.mediawiki .ambox.mbox-small-left {&lt;br /&gt;
	margin: 4px 1em 4px 0;&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
	overflow: hidden;&lt;br /&gt;
	width: 238px;&lt;br /&gt;
	border-collapse: collapse;&lt;br /&gt;
	font-size: 88%;&lt;br /&gt;
	line-height: 1.25em;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Cominixo</name></author>
	</entry>
</feed>