Skip to content

Commit

Permalink
feat: add chocobo chara
Browse files Browse the repository at this point in the history
The Chocobo is a fictional species created for
the Final Fantasy franchise by Square Enix.
  • Loading branch information
latipun7 committed Jan 22, 2025
1 parent ec96910 commit 8b4ef76
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
33 changes: 33 additions & 0 deletions src/charas/chocobo.chara
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Chocobo - true color
# by https://www.youtube.com/@HelloPixelArt

$x = "\e[49m "; #reset color
$t = "$thoughts ";
$a = "\e[48;2;0;0;0m ";
$b = "\e[48;2;232;217;0m ";
$c = "\e[48;2;186;90;0m ";
$d = "\e[48;2;255;155;61m ";
$e = "\e[48;2;0;183;239m ";
$f = "\e[48;2;255;255;255m ";
$g = "\e[48;2;180;180;180m ";

$the_chara = <<EOC
$t
$t $a $x
$t$a $b $c $a$x
$a$d $a $b $c $a$x
$a$d $e$f$a$b $c$a $x
$a$d $e$f$g$b $c$a $b$a$x
$a $d $b $c $a $b $a$x
$a $b $c$a $b$c$a $x
$a$b $c $b $c$b$c$a$x
$a$b $c $b$c$a$x
$a$b $c$b $a$x
$a $b $c$a $x
$a $x $a $b $c$a $f$a$x
$a$f$g$d$a $c$d$a $d $g$a$x
$a $d $c$d $a$x $a$c$d$c$a$x
$a$d $g$a$x $a$d $a$x
$a $f$a$x $a$f$g$d$a$x
$a $x $a $x
EOC
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ pub enum Chara {
}

/// All built-in characters name.
pub const BUILTIN_CHARA: [&str; 23] = [
pub const BUILTIN_CHARA: [&str; 24] = [
"aya",
"chocobo",
"cirno",
"clefairy",
"cow",
Expand Down

0 comments on commit 8b4ef76

Please sign in to comment.