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

116
cards/dp/dp3/10.ts Normal file
View File

@ -0,0 +1,116 @@
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