mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
72
data/XY/BREAKpoint/11.ts
Normal file
72
data/XY/BREAKpoint/11.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../BREAKpoint'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Arcanine",
|
||||
fr: "Arcanin",
|
||||
},
|
||||
illustrator: "match",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
59,
|
||||
],
|
||||
hp: 110,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Growlithe",
|
||||
fr: "Caninos",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Flop",
|
||||
fr: "Flop",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Fire",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Flamethrower",
|
||||
fr: "Lance-Flammes",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard an Energy attached to this Pokémon.",
|
||||
fr: "Défaussez une Énergie attachée à ce Pokémon.",
|
||||
},
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user