DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 0c4f861d4867c926ef1e031d211dc01fe8b6f68b deck-builder/client/assets/card_manifest.yaml -rw-r--r-- 2.0 KiB
0c4f861dJonni Liljamo Merge branch 'master' into dev 1 year, 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# - name:
#   short_details:
#     -
#   long_details:
#   cost: 0
#   actions:
#     - command:
#         R:
#           R:
#           R:
#       target_self: true
#   to_be_trashed: false

---
version: 0.0.1
cards:
  - name: The Hermits Sack
    short_details:
      - +2d4 currency
    long_details:
      - Roll 2d4 for currency
    cost: 0
    actions:
      - command:
          !RollForCurrency
            amount: 2
            sides: 4
        target_self: true
    to_be_trashed: false

  - name: Punakärpässieni
    short_details:
      - +3VP, trash this
    long_details:
      - Get 3VP, trashing the card in the process
    cost: 6
    actions:
      - command:
          !GiveVP
            amount: 3
        target_self: true
    to_be_trashed: true

  - name: Test Card 3
    short_details:
      - Mark random card in opponents deck to be trashed
    long_details:
      - Placeholder.
    cost: 6
    actions:
      - command:
          !MarkCardInDeckToBeTrashed
            index: ~
        target_self: false
    to_be_trashed: false

  - name: Test Card 4
    short_details:
      - +1d4 plays
    long_details:
      - Roll 1d4 for plays
    cost: 4
    actions:
      - command:
          !RollForPlays
            amount: 1
            sides: 4
        target_self: true
    to_be_trashed: false

  - name: Test Card 5
    short_details:
      - +2 buys
    long_details:
      - Get 2 buys
    cost: 4
    actions:
      - command:
          !GiveBuys
            amount: 2
        target_self: true
    to_be_trashed: false

  - name: Test Card 6
    short_details:
      - 1d20 currency, <15 = 0, 15-19 = 2, 20 = 6
    long_details:
      - Roll 1d20 for currency
    cost: 4
    actions:
      - command:
          !RollForCurrencyAdvanced
            amount: 1
            sides: 20
            pairs:
              - - 15
                - 0
              - - 19
                - 2
              - - 20
                - 6
        target_self: true
    to_be_trashed: false