farming_crops_16x16() returns a named list of bm_list() lists
of twenty farming crops in five stages of growth plus a portrait as bm_pixmap() objects.
Value
A named list of bm_list() lists of six bm_pixmap() objects (one through five stages of growth plus a portrait for each crop). The named list has the following twenty crop names:
"avocado"
"cassava"
"coffee"
"corn"
"cucumber"
"eggplant"
"grapes"
"lemon"
"melon"
"orange"
"pineapple"
"potato"
"rice"
"rose"
"strawberry"
"sunflower"
"tomato"
"tulip"
"turnip"
"wheat"
Details
Each sprite is sixteen by sixteen pixels large.
Farming Crops 16x16 was made and dedicated to the public domain by josehzz.
Examples
crops <- farming_crops_16x16()
names(crops)
#> [1] "avocado" "cassava" "coffee" "corn" "cucumber"
#> [6] "eggplant" "grapes" "lemon" "melon" "orange"
#> [11] "pineapple" "potato" "rice" "rose" "strawberry"
#> [16] "sunflower" "tomato" "tulip" "turnip" "wheat"
if (cli::is_utf8_output() && cli::num_ansi_colors() >= 256L) {
print(crops$corn$portrait, compress = "v")
}
#>
#> ▄▀▀▄▄▀█
#> █▀▀▀▀█▀▀▄
#> ▄▀▀▀█▀█▀▀▀▄
#> ▄▀▀▀█▀▀▀▀████
#> ▀▀▀ ▀▀▀▀▀▀▀██
#> ▀▀▀▀▀▀
#>
if (cli::is_utf8_output() && cli::num_ansi_colors() >= 256L) {
print(crops$orange$stage5, compress = "v")
}
#> ▄▄▄ ▄
#> ▄▀▀▀▀▀▀▀▀█▄▄▀▀▀▄
#> ▀▀▀▀▀▀▀▀▀▀▀▀█▀▀▀
#> ▀█▀▀▀▀▀▀▀▀▀█
#> ▄▀▀▀▀▀▀▀█▀
#> ▄▀▀█▀█▀▀█▀▀██
#> ▀▀▀▀▀▀▀▀▀ ▀▀
#>