Created
May 16, 2016 17:29
-
-
Save jmcguirk/53a6b74ea53adbbbef97c2bfd104065a to your computer and use it in GitHub Desktop.
Requirements Schema
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
{ | |
"entityTemplateId": "e_chest_basic", | |
"inherits": "e_base", | |
"components": { | |
"asset" : { | |
"defaultPrefab" : { | |
"path" : "UI/BasicChest" | |
} | |
}, | |
"shop" : { | |
"requirements" :{ | |
"purchase" : | |
[ | |
{ | |
"requirementType" : "ResourceRequirement", | |
"checkType" : "GreaterThanOrEqualTo", | |
"checkSubject" : "e_resource_coins", | |
"checkAmount" : 50 | |
} | |
], | |
"purchase" : | |
[ | |
{ | |
"requirementType" : "CounterRequirement", | |
"checkType" : "GreaterThan", | |
"checkSubject" : "ftue_step_100_completed", | |
"checkAmount" : 0 | |
} | |
], | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment