mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
57
data/Platinum/Pokémon Rumble/1.ts
Normal file
57
data/Platinum/Pokémon Rumble/1.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Venusaur",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
3,
|
||||
],
|
||||
hp: 140,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Ivysaur",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Grass",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Giga Drain",
|
||||
},
|
||||
effect: {
|
||||
en: "Remove from Venusaur the number of damage counters equal to the damage you did to the Defending Pokémon.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
64
data/Platinum/Pokémon Rumble/10.ts
Normal file
64
data/Platinum/Pokémon Rumble/10.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mew",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
151,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Cut",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Will-o'-the-Wisp",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
56
data/Platinum/Pokémon Rumble/11.ts
Normal file
56
data/Platinum/Pokémon Rumble/11.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Diglett",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
50,
|
||||
],
|
||||
hp: 30,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Dig",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
68
data/Platinum/Pokémon Rumble/12.ts
Normal file
68
data/Platinum/Pokémon Rumble/12.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Lucario",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
448,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fightning",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Riolu",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Metal Claw",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fightning",
|
||||
"Metal",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Pulse Blast",
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
61
data/Platinum/Pokémon Rumble/13.ts
Normal file
61
data/Platinum/Pokémon Rumble/13.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Skuntank",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
435,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Stunky",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Darkness",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Rage",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage plus 10 more damage for each damage counter on Skuntank.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
59
data/Platinum/Pokémon Rumble/14.ts
Normal file
59
data/Platinum/Pokémon Rumble/14.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Bastiodon",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
411,
|
||||
],
|
||||
hp: 120,
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Shieldon",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Metal",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Strength",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
data/Platinum/Pokémon Rumble/15.ts
Normal file
51
data/Platinum/Pokémon Rumble/15.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rattata",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
19,
|
||||
],
|
||||
hp: 30,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
55
data/Platinum/Pokémon Rumble/16.ts
Normal file
55
data/Platinum/Pokémon Rumble/16.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Bibarel",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
400,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Bidoof",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Rollout",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
59
data/Platinum/Pokémon Rumble/2.ts
Normal file
59
data/Platinum/Pokémon Rumble/2.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Cherrim",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
421,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Cherubi",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Solarbeam",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
54
data/Platinum/Pokémon Rumble/3.ts
Normal file
54
data/Platinum/Pokémon Rumble/3.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Ninetales",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
38,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Vulpix",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Flame Tail",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
55
data/Platinum/Pokémon Rumble/4.ts
Normal file
55
data/Platinum/Pokémon Rumble/4.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Heatran",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
485,
|
||||
],
|
||||
hp: 110,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Heat Boiler",
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon is a Water Pokémon, this attack does 60 damage plus 40 more damage.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
56
data/Platinum/Pokémon Rumble/5.ts
Normal file
56
data/Platinum/Pokémon Rumble/5.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Starmie",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
121,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Staryu",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Spiral Drain",
|
||||
},
|
||||
effect: {
|
||||
en: "Remove 1 damage counter from Starmie.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
62
data/Platinum/Pokémon Rumble/6.ts
Normal file
62
data/Platinum/Pokémon Rumble/6.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Gyarados",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
130,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Magikarp",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Thrash Tackle",
|
||||
},
|
||||
effect: {
|
||||
en: "Gyarados does 20 damage to itself.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
59
data/Platinum/Pokémon Rumble/7.ts
Normal file
59
data/Platinum/Pokémon Rumble/7.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
25,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Volt Tackle",
|
||||
},
|
||||
effect: {
|
||||
en: "Pikachu does 10 damage to itself.",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
58
data/Platinum/Pokémon Rumble/8.ts
Normal file
58
data/Platinum/Pokémon Rumble/8.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Zapdos",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
145,
|
||||
],
|
||||
hp: 100,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Drill Peck",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
52
data/Platinum/Pokémon Rumble/9.ts
Normal file
52
data/Platinum/Pokémon Rumble/9.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Pokémon Rumble'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Mewtwo",
|
||||
},
|
||||
illustrator: undefined,
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
150,
|
||||
],
|
||||
hp: 100,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Super Psy Bolt",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user