1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

117 lines
2.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "dp3-10",
localId: 10,
// Card informations
name: {
en: "Ho-Oh",
fr: "Ho-Oh",
},
hp: 90,
type: [
Type.FIRE,
],
dexId: 250,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp3/10/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/10/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp3/10/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp3/10/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 97,
name: "Kazuyuki Kano"
},
abilities: [{
id: 1059,
type: AbilityType.POKEPOWER,
name: {
en: "Phoenix Turn",
},
text: {
en: "Once during your opponent's turn, if Ho-Oh would be Knocked Out by damage from an attack, you may flip a coin. If heads, Ho-Oh isn't discarded. Instead, remove all damage counters, Special Conditions, and other effects from Ho-Oh. Then, discard all cards attached to Ho-Oh (except for Energy cards). This counts as Ho-Oh being Knocked Out and your opponent takes a Prize card.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Rainbow Wing",
fr: "Coup du phoenix",
},
text: {
en: "This attack does 20 damage times the number of different types of basic Energy cards attached to Ho-Oh.",
fr: "Une seule fois lors du tour de votre adversaire, si Ho-Oh est mis K.O par les dégâts d'une attaque, vous pouvez lancer une pièce. Si c'est pile, Ho-Oh n'est pas défaussé. Retirez-lui à la place tous ses marqueurs de dégât, États Spéciaux et autres effets. Ensuite, défaussez toutes les cartes attachées à Ho-Oh (cartes Énergie exceptées). Ho-Oh est alors mis K.O et votre adversaire récolte une carte Récompense.",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Aile arc-en-ciel",
},
text: {
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de types différents de cartes Énergie de base attachées à Ho-Oh.",
},
damage: "20×"
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Secret Wonders",
code: "dp3"
}
}
export default card