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

107
cards/sm/sm6/49.ts Normal file
View File

@ -0,0 +1,107 @@
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: "sm6-49",
localId: 49,
// Card informations
name: {
en: "Aegislash",
fr: "Exagide",
},
hp: 150,
type: [
Type.PSYCHIC,
],
dexId: 681,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm6/49/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/49/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm6/49/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/49/high.png",
},
},
evolveFrom: {
en: "Doublade",
fr: "Dimoclès",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 50,
name: "Anesaki Dynamic"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Ticking Knock Out",
fr: "K.O. Imminent",
},
text: {
en: "During your next turn, if the Defending Pokémon is damaged by an attack, it will be Knocked Out.",
fr: "Pendant votre prochain tour, si le Pokémon Défenseur subit les dégâts dune attaque, il sera mis K.O.",
},
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Draining Blade",
fr: "Lame Siphon",
},
text: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
},
damage: 90
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Forbidden Light",
code: "sm6"
}
}
export default card