1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

99
cards/bw/bw3/14.ts Normal file
View File

@ -0,0 +1,99 @@
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-14",
localId: 14,
// Card informations
name: {
en: "Victini",
fr: "Victini",
},
hp: 60,
type: [
Type.FIRE,
],
dexId: 494,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw3/14/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw3/14/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw3/14/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw3/14/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 308,
type: AbilityType.TALENT,
name: {
en: "Victory Star",
fr: "Victorieux",
},
text: {
en: "Once during your turn, after you flip any coins for an attack, you may ignore all effects of those coin flips and begin flipping those coins again. You can't use more than 1 Victory Star Ability each turn.",
fr: "Une seule fois pendant votre tour, après avoir lancé des pièces pour une attaque, vous pouvez ignorer les effets de ces lancers de pièce et lancer ces pièces à nouveau. Vous ne pouvez pas utiliser la capacité spéciale Victorieux plus d'une fois par tour.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Stored Power",
fr: "Force Ajoutée",
},
text: {
en: "Move all Energy attached to this Pokémon to 1 of your Benched Pokémon.",
fr: "Déplacez toutes les Énergies attachées à ce Pokémon vers 1 de vos Pokémon de Banc.",
},
damage: 30
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Noble Victories",
code: "bw3"
}
}
export default card