forked from Simnation/Main
werfen
This commit is contained in:
parent
453b281a4b
commit
46b895aff2
25 changed files with 716 additions and 0 deletions
Binary file not shown.
After Width: | Height: | Size: 145 KiB |
Binary file not shown.
After Width: | Height: | Size: 80 KiB |
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
Binary file not shown.
After Width: | Height: | Size: 102 KiB |
|
@ -0,0 +1,6 @@
|
|||
INSERT INTO `items` (`name`, `label`, `limit`) VALUES
|
||||
('football', 'Football', 100),
|
||||
('basketball', 'Basketball', 100),
|
||||
('baseball', 'Baseball', 100),
|
||||
('soccer', 'Soccer Ball', 100),
|
||||
;
|
|
@ -0,0 +1,6 @@
|
|||
INSERT INTO `items` (`name`, `label`, `weight`) VALUES
|
||||
('football', 'Football', 100),
|
||||
('basketball', 'Basketball', 100),
|
||||
('baseball', 'Baseball', 100),
|
||||
('soccer', 'Soccer Ball', 100),
|
||||
;
|
|
@ -0,0 +1,24 @@
|
|||
["football"] = {
|
||||
label = 'Football',
|
||||
weight = 1,
|
||||
stack = true,
|
||||
description = ""
|
||||
},
|
||||
["basketball"] = {
|
||||
label = 'Basketball',
|
||||
weight = 1,
|
||||
stack = true,
|
||||
description = ""
|
||||
},
|
||||
["baseball"] = {
|
||||
label = 'Baseball',
|
||||
weight = 1,
|
||||
stack = true,
|
||||
description = ""
|
||||
},
|
||||
["soccer"] = {
|
||||
label = 'Soccer Ball',
|
||||
weight = 1,
|
||||
stack = true,
|
||||
description = ""
|
||||
},
|
|
@ -0,0 +1,4 @@
|
|||
["football"] = {["name"] = "football", ["label"] = "Football", ["weight"] = 1, ["type"] = "item", ["image"] = "football.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||||
["basketball"] = {["name"] = "basketball", ["label"] = "Basketball", ["weight"] = 1, ["type"] = "item", ["image"] = "basketball.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||||
["baseball"] = {["name"] = "baseball", ["label"] = "Baseball", ["weight"] = 1, ["type"] = "item", ["image"] = "baseball.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
||||
["soccer"] = {["name"] = "soccer", ["label"] = "Soccer Ball", ["weight"] = 1, ["type"] = "item", ["image"] = "soccer.png", ["unique"] = true, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""},
|
Loading…
Add table
Add a link
Reference in a new issue