mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
89 lines
1.3 KiB
TypeScript
89 lines
1.3 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "bw3-15",
|
||
localId: 15,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Victini",
|
||
fr: "Victini",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.FIRE,
|
||
],
|
||
|
||
dexId: 494,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw3/15/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw3/15/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw3/15/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw3/15/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 15,
|
||
name: "Naoki Saito"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.FIRE,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "V-create",
|
||
fr: "Coup Victoire",
|
||
},
|
||
text: {
|
||
en: "If you have 4 or fewer Benched Pokémon, this attack does nothing.",
|
||
fr: "Si vous avez 4 Pokémon de Banc ou moins, cette attaque ne fait rien.",
|
||
},
|
||
damage: 100
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.WATER,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Noble Victories",
|
||
code: "bw3"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|