11 lines
239 B
Lua
11 lines
239 B
Lua
local item = require("item")
|
|
|
|
local m = item:from{
|
|
name = "Seed",
|
|
description = "A reproductive capsule for plants.",
|
|
width = 20,
|
|
height = 20,
|
|
lines = {'fill', {0, 5, 5, 0, 20, 10, 20, 15, 15, 20, 10, 15}},
|
|
}
|
|
|
|
return m
|