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

98
cards/xy/xy11/80.ts Normal file
View File

@ -0,0 +1,98 @@
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: "xy11-80",
localId: 80,
// Card informations
name: {
en: "Klefki",
fr: "Trousselin",
},
hp: 70,
type: [
Type.FAIRY,
],
dexId: 707,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy11/80/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/80/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy11/80/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/80/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 62,
name: "Saya Tsuruta"
},
abilities: [{
id: 1355,
type: AbilityType.TALENT,
name: {
en: "Wonder Lock",
fr: "Serrure Merveille",
},
text: {
en: "Once during your turn (before your attack), if this Pokémon is on your Bench, you may discard all cards attached to this Pokémon and attach it to 1 of your Pokémon as a Pokémon Tool card. Prevent any damage done to the Pokémon this card is attached to by attacks from your opponent's Mega Evolution Pokémon. If this card is attached to a Pokémon, discard this card at the end of your opponent's turn.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est sur votre Banc, vous pouvez défausser toutes les cartes attachées à ce Pokémon et lattacher à lun de vos Pokémon en tant que carte Outil Pokémon. Évitez tous les dégâts infligés au Pokémon auquel cette carte est attachée par les attaques des Pokémon Méga-Évolution de votre adversaire. Si cette carte est attachée à un Pokémon, défaussez-la à la fin du tour de votre adversaire.",
}
}],
attacks: [{
cost: [
Type.FAIRY,
Type.COLORLESS
],
name: {
en: "Fairy Wind",
fr: "Vent Féérique",
},
damage: 30
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
resistances: [{
type: Type.DARKNESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Steam Siege",
code: "xy11"
}
}
export default card