forked from tcgdex/cards-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path004.ts
More file actions
50 lines (40 loc) · 715 Bytes
/
Copy path004.ts
File metadata and controls
50 lines (40 loc) · 715 Bytes
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
import { Card } from "../../../interfaces"
import Set from "../Chaos Rising"
const card: Card = {
set: Set,
name: {
en: "Carnivine"
},
illustrator: "Heisuke Kitazawa",
rarity: "Common",
category: "Pokemon",
dexId: [455],
hp: 110,
types: ["Grass"],
stage: "Basic",
attacks: [{
name: {
en: "Bite Whole"
},
cost: ["Colorless", "Colorless", "Colorless"],
damage: 80,
effect: {
en: "This attack does 80 more damage for each in your opponent's Active Pokémon's Retreat Cost."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "J",
variants: [
{
type: "normal",
thirdParty: {
tcgplayer: 693459
}
}
],
}
export default card