1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-15 01:41:59 +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

98
cards/ex/ex8/102.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: "ex8-102",
localId: 102,
// Card informations
name: {
en: "Rayquaza ex",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 384,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex8/102/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex8/102/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 78,
name: "Shin-ichi Yoshikawa"
},
abilities: [{
id: 803,
type: AbilityType.POKEBODY,
name: {
en: "Dragon Boost",
},
text: {
en: "Once during your turn, when you put Rayquaza ex from your hand onto your Bench, you may move any number of basic Energy cards attached to your Pokémon to Rayquaza ex.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.LIGHTNING
],
name: {
en: "Spiral Blast",
},
text: {
en: "Does 20 damage for each basic Energy card attached to Rayquaza ex.",
},
damage: 20
}],
weaknesses: [{
type: Type.COLORLESS,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-30"
},{
type: Type.FIGHTING,
value: "-30"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Deoxys",
code: "ex8"
}
}
export default card