mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
Fix HeartGold SoulSilver datas (#73)
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -6,22 +6,27 @@ const card: Card = {
|
||||
en: "Houndoom",
|
||||
fr: "Demolosse",
|
||||
},
|
||||
illustrator: "Hideaki Hakozaki",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
illustrator: "Hideaki Hakozaki",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
229,
|
||||
],
|
||||
|
||||
hp: 110,
|
||||
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Houndour",
|
||||
fr: "Malosse",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@ -32,11 +37,12 @@ const card: Card = {
|
||||
fr: "Haleine de feu",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, the Defending Pokémon is now Burned. This power can't be used if Houndoom is affected by a Special Condition.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, le Pokémon Défenseur est maintenant Brûlé. Ce pouvoir ne peut pas être utilisé si Démolosse est affecté par un État Spécial.",
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, the Defending Pokémon is now Burned. This power can’t be used if Houndoom is affected by a Special Condition.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c’est face, le Pokémon Défenseur est maintenant Brûlé. Ce pouvoir ne peut pas être utilisé si Démolosse est affecté par un État Spécial.",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -49,29 +55,37 @@ const card: Card = {
|
||||
fr: "Pince des Ténèbres",
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
en: "The Defending Pokémon can’t retreat during your opponent’s next turn.",
|
||||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite durant le prochain tour de votre adversaire.",
|
||||
},
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
suffix: "Prime",
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user