word-snatchers-cli-berries-plugin
Version:
Berries plugin for word-snatchers-cli
52 lines (50 loc) • 1.59 kB
JavaScript
class BerriesPlugin {
build() {
return [
{
definition:
"a North American plant that is a member of the rose family, or its fruit",
word: "chokeberry",
},
{
definition: "a small soft red fruit, or the bush on which it grows",
word: "raspberry",
},
{
definition:
"the dark blue fruit of a bush that is grown in North America, similar to a bilberry",
word: "blueberry",
},
{
definition:
"a small, green fruit covered with short hairs. Gooseberries grow on bushes and have a sour taste",
word: "gooseberry",
},
{
definition:
"a small juicy red fruit that has small brown seeds on its surface, or the plant with white flowers on which this fruit grows",
word: "strawberry",
},
{
definition:
"a small, black dried grape without seeds, used especially in cakes: a small, round fruit that grows on bushes and is eaten fresh or cooked",
word: "currant",
},
{
definition: "a small, round, red fruit with a sour taste",
word: "cranberry",
},
{
definition:
"a small dark purple fruit that grows wild in Europe and is usually cooked before being eaten",
word: "blackberry",
},
{
definition:
"a small, round, soft red or black fruit with a single hard seed in the middle, or the tree on which the fruit grows",
word: "cherry",
},
];
}
}
export default BerriesPlugin;