1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-25 13:29:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

93
cards/xy/xya/28a.ts Normal file
View File

@ -0,0 +1,93 @@
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: "xya-28a",
localId: "28a",
// Card informations
name: {
fr: "Voltali-ex",
},
hp: 160,
type: [
Type.LIGHTNING,
],
image: {
low: {
fr: "https://assets.tcgdex.net/fr/xy/xya/28a/low.png",
},
high: {
fr: "https://assets.tcgdex.net/fr/xy/xya/28a/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
fr: "Météores",
},
text: {
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 30
},{
name: {
fr: "Rayon Flash",
},
text: {
fr: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
},
damage: "{L}{C}{C}"
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "carte alternative A Jaune",
code: "xya"
}
}
export default card