word-snatchers-cli-types-of-fabric-plugin
Version:
Types of fabric plugin for word-snatchers-cli
60 lines (58 loc) • 1.72 kB
JavaScript
class WordSnatchersCliTypesOfFabricPlugin {
build() {
return [
{
word: "cotton",
definition: "thread or cloth made from the fibres of the cotton plant",
},
{
word: "silk",
definition:
"a delicate, soft type of cloth made from a thread produced by silkworms, or the thread itself",
},
{
word: "chiffon",
definition: "a very thin, almost transparent cloth of silk or nylon",
},
{
word: "crepe",
definition: "thin cloth with a surface that has wrinkles",
},
{
word: "denim",
definition:
"a thick, strong cotton cloth, often blue in colour, used especially for making jeans",
},
{
word: "lace",
definition:
"a decorative cloth made by twisting thin thread in delicate patterns with holes in them",
},
{
word: "leather",
definition:
"animal skin treated in order to preserve it, and used to make shoes, bags, clothes, equipment, etc.",
},
{
word: "linen",
definition: "strong cloth made from the fibres of the flax plant",
},
{
word: "satin",
definition:
"a type of cloth, sometimes made of silk, that is smooth and shiny on one side but not on the other",
},
{
word: "velvet",
definition:
"a cloth usually made from silk or cotton with a thick, soft surface",
},
{
word: "wool",
definition:
"the soft, thick hair that grows on the bodies of sheep and some other animals",
},
];
}
}
export default WordSnatchersCliTypesOfFabricPlugin;