Skip to content

Commit

Permalink
add all the styles like all of them
Browse files Browse the repository at this point in the history
  • Loading branch information
trueharuu committed Jun 28, 2024
1 parent 4778963 commit 10ade2a
Showing 1 changed file with 130 additions and 16 deletions.
146 changes: 130 additions & 16 deletions assyst-core/src/rest/cooltext.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
use std::fmt::Display;
use std::hash::{DefaultHasher, Hash, Hasher};
use std::str::FromStr;

use anyhow::bail;
use reqwest::ClientBuilder;
Expand Down Expand Up @@ -62,7 +60,7 @@ pub async fn cooltext(style: &str, text: &str) -> anyhow::Result<Vec<u8>> {
let client = ClientBuilder::new().danger_accept_invalid_certs(true).build().unwrap();
let styled = STYLES
.iter()
.find_map(|(x, y)| if *x == style { Some(y) } else { None })
.find_map(|(x, y)| if *x == style.to_lowercase() { Some(y) } else { None })
.ok_or(anyhow::anyhow!("unknown style {style}"))?;

let cool_text_response = client
Expand Down Expand Up @@ -99,17 +97,133 @@ pub async fn cooltext(style: &str, text: &str) -> anyhow::Result<Vec<u8>> {
}

pub const STYLES: &[(&str, &str)] = &[
("skate", "4610356863"),
("super_scripted", "4610363770"),
("tough", "758282876"),
("white", "4610365972"),
("itext", "37"),
("easy", "791030843"),
("textured", "23"),
("stranger", "4610366723"),
("burning", "4"),
("neon", "18"),
("candy", "732431452"),
("saint", "4516516448"),
("3d_outline", "4611483973"),
("3D_Outline_Gradient", "29"),
("3D_Outline_Textured", "28"),
("Alien_Glow", "1"),
("Animated_Glow", "26"),
("Apollo_11", "4113153856"),
("Astroman", "4112238638"),
("Bad_Acid", "732450628"),
("Black_Gold", "4516496663"),
("Black_Hole", "602543131"),
("Blended", "2"),
("Blinkie", "819515844"),
("Bovinated", "3"),
("Burning", "4"),
("Candy", "732431452"),
("Candy_Stripe", "1783676518"),
("Carved", "5"),
("Caster", "2654162149"),
("Chalk", "6"),
("Cheetah", "783763343"),
("Chick_Flick", "622063540"),
("Chrome_One", "7"),
("Chrome_Two", "8"),
("Chromium", "33"),
("Club", "832337804"),
("Coffee_Cup", "4528246004"),
("Comic", "9"),
("Cool_Metal", "10"),
("Crystal", "11"),
("Cupid", "622058564"),
("Cutout", "12"),
("Dark", "830474754"),
("Dark_Magic", "2975674466"),
("DEEJAY", "4112285956"),
("Dragon", "1408867449"),
("Easy", "791030843"),
("Embossed", "31"),
("Epic_Stone", "732440996"),
("Fantasy", "45"),
("Felt", "24"),
("Fire", "13"),
("Flaming", "1169711118"),
("Frosty", "36"),
("Fun", "1009848424"),
("Galactica", "599808801"),
("Gelatin", "4516518098"),
("Glitter", "44"),
("Glossy", "30"),
("Glowing_Hot", "14"),
("Glowing_Steel", "15"),
("Gold_Bar", "757794054"),
("GOLD_BEVEL", "4112424040"),
("Gold_Outline", "46"),
("Gold_Trim", "732443655"),
("Gradient_Bevel", "16"),
("Graffiti_Creator", "4110593891"),
("Greek_Gold", "4112421173"),
("Grinch", "1516206867"),
("Groovy", "789574607"),
("Grunge", "35"),
("Gunmetal", "852819205"),
("Halloween", "1408818473"),
("Happy_Joy", "1516212090"),
("Happy_New_Year", "2222569522"),
("Hot", "833904313"),
("Hot_Pink", "2651216203"),
("House_Arryn", "783758829"),
("Ice_Cube", "1779834160"),
("Iceberg", "783756759"),
("Iced", "34"),
("Imprint", "615602790"),
("iText", "37"),
("Keen", "758279718"),
("Klingon", "599808502"),
("Lasers", "611409107"),
("Lava", "852774362"),
("Legal", "732429307"),
("Liquid_Gold", "1279361064"),
("Love", "819721038"),
("Merry_Christmas", "2222568262"),
("Miami", "2854656927"),
("Molten_Core", "43"),
("Muddy", "615608693"),
("Neon", "18"),
("Neron", "2176267473"),
("Nova", "19"),
("Old_Stone", "27"),
("Orange", "943456044"),
("Outline", "25"),
("Particle", "39"),
("Pixel_Badge", "32"),
("Plain", "4112952183"),
("Plastic", "42"),
("Popsicle", "615600713"),
("Princess", "829964308"),
("Quicksilver", "790967832"),
("Rage", "749791093"),
("Robot", "2655372531"),
("Romance", "4112260450"),
("Royal", "1357657967"),
("SAINT", "4516516448"),
("Saint_Patrick", "758277984"),
("Scavenge", "4110551533"),
("Serial", "742083872"),
("Simple", "21"),
("Skate", "780833150"),
("Slab", "17"),
("Snowman", "615569527"),
("Spaced_Out", "2655376160"),
("Spring", "759902224"),
("Starburst", "22"),
("Stranger", "2792545512"),
("Studio_54", "732453157"),
("Sugar", "1783669883"),
("Super_Scripted", "732447945"),
("Supernova", "2650967346"),
("Sushi", "830446526"),
("Sword", "2172004512"),
("Tesla", "4113131447"),
("Textured", "23"),
("Tie_Dyed", "612444173"),
("Tough", "758282876"),
("Tribal", "2975689126"),
("Trogdor", "4112270507"),
("Vampire", "732414977"),
("Warp", "599825692"),
("Water", "830469381"),
("White", "732438332"),
("Will_You_Marry_Me", "4112242098"),
("Wizards", "38"),
];

0 comments on commit 10ade2a

Please sign in to comment.