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

114
cards/hgss/hgss3/90.ts Normal file
View File

@ -0,0 +1,114 @@
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: "hgss3-90",
localId: 90,
// Card informations
name: {
en: "Rayquaza & Deoxys LEGEND",
fr: "Rayquaza & Deoxys LÉGENDE",
},
type: [
Type.COLORLESS,
Type.PSYCHIC,
],
dexId: 384,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss3/90/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/90/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss3/90/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss3/90/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEGEND,
],
abilities: [{
id: 1048,
type: AbilityType.POKEBODY,
name: {
en: "Space Virus",
fr: "Virus spatial",
},
text: {
en: "If your opponent's Pokémon is Knocked Out by damage from an attack of Rayquaza & Deoxys LEGEND, take 1 more Prize card.",
fr: "Si le Pokémon de votre adversaire est mis K.O. par une attaque de Rayquaza & Deoxys LÉGENDE, prenez une carte Récompense supplémentaire.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.FIRE,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Ozone Buster",
fr: "Châtiment stellaire",
},
text: {
en: "Discard all Fire Energy attached to Rayquaza & Deoxys LEGEND.",
fr: "Défaussez toutes les cartes Énergie Fire attachées à Rayquaza & Deoxys LÉGENDE.",
},
damage: 150
},{
name: {
fr: "",
},
text: {
fr: "Placez cette carte sur votre Banc uniquement avec l'autre moitié de Rayquaza & Deoxys LÉGENDE.",
},
},{
name: {},
text: {
fr: "Lorsque ce Pokémon est mis K.O., votre adversaire prend 2 cartes Récompense.",
},
}],
weaknesses: [{
type: Type.COLORLESS,
value: "×2"
},{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.LEGEND,
category: Category.POKEMON,
set: {
name: "HS—Undaunted",
code: "hgss3"
}
}
export default card