1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00
Florian Bouillon dc4d1bd6cb
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>
2021-09-29 21:43:33 +00:00

95 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
import Set from '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Noctowl",
fr: "Noarfang",
},
illustrator: "Suwama Chiaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
164,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Hoothoot",
fr: "Hoothoot",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Night Sight",
fr: "Vision de nuit",
},
effect: {
en: "Once during your turn (before your attack), you may draw a card. This power cant be used if Noctowl is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher une carte. Ce pouvoir ne peut pas être utilisé si Noarfang est affecté par un État spécial.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Extrasensory",
fr: "Extrasenseur",
},
effect: {
en: "If you have the same number of cards in your hand as your opponent, this attack does 40 damage plus 40 more damage.",
fr: "Si vous avez le même nombre de cartes dans votre main que votre adversaire, cette attaque inflige 40 dégâts plus 40 dégâts supplémentaires.",
},
damage: "40+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
description: {
en: "Its eyes are specially adapted. They concentrate even faint light and enable it to see in the dark."
},
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card