DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 106a55af94523d2dcca350a05b8b53d83bb93619 deck-builder/client/assets/card_manifest.yaml -rw-r--r-- 2.5 KiB
106a55afJonni Liljamo chore: remove old-client-for-ref 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# - 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 for currency, <4 = -2VP, 4-15 = 0, 15-19 = 2, 20 = 6
    long_details:
      - Roll 1d20 for currency, with a possibility to lose VP
    cost: 4
    actions:
      - command:
          !RollForAdvanced
            amount: 1
            sides: 20
            pairs:
              - - 4
                - command:
                    !RemoveVP
                    amount: 2
                  target_self: true
              - - 15
                - command:
                    !GiveCurrency
                    amount: 0
                  target_self: true
              - - 19
                - command:
                    !GiveCurrency
                    amount: 2
                  target_self: true
              - - 20
                - command:
                    !GiveCurrency
                    amount: 6
                  target_self: true
        target_self: true
    to_be_trashed: false