Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "start_beer": {
- "author": "Old Jimothy",
- "sprite": "antonio_avatar",
- "text": "{0} bottles of beer on the wall, {0} bottles of beer. Take one down and pass it around, {1} bottles of beer on the wall.",
- "options": [
- {
- "text": "[wait]",
- "type": "dialogue",
- "dialogue": "continue_beer"
- },
- {
- "text": "[leave]",
- "type": "end"
- }
- ],
- "actions": [
- {
- "type": "set_flag",
- "flag": "beer",
- "value": 98
- },
- {
- "type": "set_flag",
- "flag": "old_beer",
- "value": 99
- }
- ],
- "substitutions": [
- {
- "type": "flag",
- "flag": "old_beer"
- },
- {
- "type": "flag",
- "flag": "beer"
- }
- ]
- },
- "continue_beer": {
- "author": "Old Jimothy",
- "sprite": "antonio_avatar",
- "text": "{0} bottles of beer on the wall, {0} bottles of beer. Take one down and pass it around, {1} bottles of beer on the wall.",
- "options": [
- {
- "text": "[wait]",
- "type": "dialogue",
- "dialogue": "continue_beer",
- "requirements": [
- {
- "type": "more_than",
- "flag": "beer",
- "value": 2
- }
- ]
- },
- {
- "text": "[wait]",
- "type": "dialogue",
- "dialogue": "two_beers",
- "requirements": [
- {
- "type": "equals",
- "flag": "beer",
- "value": 2
- }
- ]
- },
- {
- "text": "[leave]",
- "type": "end"
- }
- ],
- "actions": [
- {
- "type": "increment_flag",
- "flag": "beer",
- "value": -1
- },
- {
- "type": "increment_flag",
- "flag": "old_beer",
- "value": -1
- }
- ],
- "substitutions": [
- {
- "type": "flag",
- "flag": "old_beer"
- },
- {
- "type": "flag",
- "flag": "beer"
- }
- ]
- },
- "two_beers": {
- "author": "Old Jimothy",
- "sprite": "antonio_avatar",
- "text": "{0} bottles of beer on the wall, {0} bottles of beer. Take one down and pass it around, {1} bottle of beer on the wall.",
- "options": [
- {
- "text": "[wait]",
- "type": "dialogue",
- "dialogue": "one_beer"
- },
- {
- "text": "[leave]",
- "type": "end"
- }
- ],
- "actions": [
- {
- "type": "increment_flag",
- "flag": "beer",
- "value": -1
- },
- {
- "type": "increment_flag",
- "flag": "old_beer",
- "value": -1
- }
- ],
- "substitutions": [
- {
- "type": "flag",
- "flag": "old_beer"
- },
- {
- "type": "flag",
- "flag": "beer"
- }
- ]
- },
- "one_beer": {
- "author": "Old Jimothy",
- "sprite": "antonio_avatar",
- "text": "{0} bottle of beer on the wall, {0} bottle of beer. Take one down and pass it around, no more bottles of beer on the wall.",
- "options": [
- {
- "text": "[wait]",
- "type": "dialogue",
- "dialogue": "no_beer"
- },
- {
- "text": "[leave]",
- "type": "end"
- }
- ],
- "actions": [
- {
- "type": "increment_flag",
- "flag": "beer",
- "value": -1
- },
- {
- "type": "increment_flag",
- "flag": "old_beer",
- "value": -1
- }
- ],
- "substitutions": [
- {
- "type": "flag",
- "flag": "old_beer"
- },
- {
- "type": "flag",
- "flag": "beer"
- }
- ]
- },
- "no_beer": {
- "author": "Old Jimothy",
- "sprite": "antonio_avatar",
- "text": "No more bottles of beer on the wall, no more bottles of beer.",
- "options": [
- {
- "text": "[wait]",
- "type": "dialogue",
- "dialogue": "refill_beer"
- },
- {
- "text": "[leave]",
- "type": "end"
- }
- ]
- },
- "refill_beer": {
- "author": "Old Jimothy",
- "sprite": "antonio_avatar",
- "text": "Go to the store and buy some more, {0} bottles of beer on the wall.",
- "options": [
- {
- "text": "[wait]",
- "type": "dialogue",
- "dialogue": "continue_beer"
- },
- {
- "text": "[leave]",
- "type": "end"
- }
- ],
- "actions": [
- {
- "type": "set_flag",
- "flag": "beer",
- "value": 99
- },
- {
- "type": "set_flag",
- "flag": "old_beer",
- "value": 100
- }
- ],
- "substitutions": [
- {
- "type": "flag",
- "flag": "beer"
- }
- ]
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment