Last active
June 10, 2024 07:56
-
-
Save Zyrenth/1ae853881e967e94d3295b90851b6a3e to your computer and use it in GitHub Desktop.
this fork is just for testing the ui layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 2, | |
"enums": [ | |
{ | |
"name": "test", | |
"values": ["One", "Two"] | |
} | |
], | |
"message": "lorem ipsum. zyrenth ipsum", | |
"redeems": [ | |
{ | |
"id": "spawnermfish", | |
"title": "Spawn Ermfish x1", | |
"description": "Spawn an Ermfish in front of Vedal", | |
"image": "img/fish.png", | |
"price": 100, | |
"sku": "bits100", | |
"args": [ | |
{ | |
"name": "amount", | |
"title": "Spawn Amount", | |
"description": "Number of ermfish to spawn (not x1)", | |
"type": 1, | |
"required": true, | |
"min": 1, | |
"max": 5, | |
"defaultValue": 1 | |
}, | |
{ | |
"name": "behind", | |
"title": "Spawn Behind Player", | |
"description": "checked = funny", | |
"type": 3, | |
"required": false | |
}, | |
{ | |
"name": "test", | |
"title": "Testing", | |
"description": "blah", | |
"type": "test", | |
"required": true | |
}, | |
{ | |
"name": "essay", | |
"title": "Text", | |
"description": "blabbering", | |
"type": 0, | |
"required": true, | |
"minLength": 5, | |
"maxLength": 6 | |
}, | |
{ | |
"name": "float", | |
"title": "Float", | |
"type": 2 | |
}, | |
{ | |
"name": "vector", | |
"title": "some vector", | |
"description": "VICTOR GIVE ME A VECTOR", | |
"type": 4, | |
"required": true, | |
"min": 1, | |
"max": 5, | |
"defaultValues": [0, 0, 0] | |
} | |
] | |
}, | |
{ | |
"id": "spawnermfish2", | |
"title": "Spawn Ermfish x2", | |
"description": "Spawn an Ermfish in front of Vedal", | |
"image": "img/fish.png", | |
"hidden": true, | |
"price": 100, | |
"sku": "bits100", | |
"args": [ | |
{ | |
"name": "amount", | |
"type": "float", | |
"defaultValue": 1 | |
}, | |
{ | |
"name": "behind", | |
"type": "boolean" | |
}, | |
{ | |
"name": "test", | |
"type": "test" | |
} | |
] | |
}, | |
{ | |
"id": "spawnermfish4", | |
"title": "erm", | |
"description": "erm erm erm...", | |
"image": "img/fish.png", | |
"disabled": true, | |
"price": 100, | |
"sku": "bits100", | |
"args": [ | |
{ | |
"name": "amount", | |
"type": "float", | |
"defaultValue": 1 | |
}, | |
{ | |
"name": "behind", | |
"type": "boolean" | |
}, | |
{ | |
"name": "test", | |
"type": "test" | |
} | |
] | |
}, | |
{ | |
"id": "spawnermfish5", | |
"title": "erm fish", | |
"description": "erm erm erm... fish", | |
"image": "img/fish.png", | |
"price": 100, | |
"sku": "bits100", | |
"args": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment