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

110
cards/xy/xy9/62.ts Normal file
View File

@ -0,0 +1,110 @@
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: "xy9-62",
localId: 62,
// Card informations
name: {
en: "Aegislash",
fr: "Exagide",
},
hp: 140,
type: [
Type.PSYCHIC,
],
dexId: 681,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy9/62/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy9/62/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy9/62/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy9/62/high.png",
},
},
evolveFrom: {
en: "Doublade",
fr: "Dimoclès",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 67,
name: "Hitoshi Ariga"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Painful Sword",
fr: "Lame Douloureuse",
},
text: {
en: "Double the number of damage counters on each of your opponent's Pokémon.",
fr: "Doublez le nombre de marqueurs de dégâts sur chacun des Pokémon de votre adversaire.",
},
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Megaton Slash",
fr: "Tranche Mégatonne",
},
text: {
en: "This attack does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 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: 100
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "BREAKpoint",
code: "xy9"
}
}
export default card