Removed the most ugly ducks.
This commit is contained in:
parent
352887b330
commit
1e348a0ad2
1 changed files with 3 additions and 5 deletions
|
@ -147,13 +147,11 @@ someRandomDuck = do
|
||||||
|
|
||||||
-- | There are many ways to hide as a duck, this function tries to cover most of them
|
-- | There are many ways to hide as a duck, this function tries to cover most of them
|
||||||
ducks :: [String]
|
ducks :: [String]
|
||||||
ducks = [ x : y : z | x <- nose, y <- face, z <- ["__/", "_/", "/"] ]
|
ducks = [ x : y : z | x <- ">=", y <- face, z <- ["__/", "_/"] ]
|
||||||
++ [ L.reverse $ x : y : z | x <- nose, y <- face, z <- ["__\\", "_\\", "\\"] ]
|
++ [ L.reverse $ x : y : z | x <- "<=", y <- face, z <- ["__\\", "_\\"] ]
|
||||||
where
|
where
|
||||||
nose :: String
|
|
||||||
nose = "<>="
|
|
||||||
face :: String
|
face :: String
|
||||||
face = "oO°@©®ð*òôóø"
|
face = "oO°@©®ð*òôóø⊕Ω"
|
||||||
|
|
||||||
-- | Weapons can have different noises
|
-- | Weapons can have different noises
|
||||||
bangs :: [String]
|
bangs :: [String]
|
||||||
|
|
Reference in a new issue