1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +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

103
cards/xy/xy10/21.ts Normal file
View File

@ -0,0 +1,103 @@
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: "xy10-21",
localId: 21,
// Card informations
name: {
en: "White Kyurem",
fr: "Kyurem Blanc",
},
hp: 130,
type: [
Type.WATER,
],
dexId: 646,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy10/21/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/21/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy10/21/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/21/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Burning Icicles",
fr: "Stalactites Brûlantes",
},
text: {
en: "If this Pokémon has any Fire Energy attached to it, this attack does 20 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Si de l'Énergie Fire est attachée à ce Pokémon, cette attaque inflige 20 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 40
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Blizzard Burn",
fr: "Blizzard Étourdissant",
},
text: {
en: "This Pokémon can't attack during your next turn.",
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
},
damage: 130
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Fates Collide",
code: "xy10"
}
}
export default card