Advertisement
VincentOostelbos

Trigger and actions config

May 26th, 2020
1,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.56 KB | None | 0 0
  1. {
  2.     "rules":{
  3.         "Quotes":[
  4.             {
  5.                 "trigger":{
  6.                     "condition":"mature",
  7.                     "cards": "Query quote with hint"
  8.                 },
  9.                 "action": {
  10.                     "action": "unsuspend",
  11.                     "cards": "Query quote without hint"
  12.                 }
  13.             },
  14.             {
  15.                 "trigger":
  16.                 ["any",
  17.                     [
  18.                         {
  19.                             "condition":"young",
  20.                             "cards": "Query quote with hint"
  21.                         },
  22.                         {
  23.                             "condition":"new",
  24.                             "cards": "Query quote with hint"
  25.                         }
  26.                     ]
  27.                 ],
  28.                 "action": {
  29.                     "action": "suspend",
  30.                     "cards": "Query quote without hint"
  31.                 }
  32.             }
  33.         ]
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement