1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29: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/xy11/74.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: "xy11-74",
localId: 74,
// Card informations
name: {
en: "Cobalion",
fr: "Cobaltium",
},
hp: 120,
type: [
Type.METAL,
],
dexId: 638,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy11/74/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/74/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy11/74/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy11/74/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 95,
name: "kirisAki"
},
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Quick Guard",
fr: "Prévention",
},
text: {
en: "Prevent all damage done to this Pokémon by attacks from Basic Pokémon during your opponent's next turn. This Pokémon can't use Quick Guard during your next turn.",
fr: "Évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base pendant le prochain tour de votre adversaire. Ce Pokémon ne peut pas utiliser Prévention pendant votre prochain tour.",
},
},{
cost: [
Type.METAL,
Type.METAL
],
name: {
en: "Revenge Blast",
fr: "Explo-Vengeance",
},
text: {
en: "This attack does 30 more damage for each Prize card your opponent has taken.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Steam Siege",
code: "xy11"
}
}
export default card