mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
78
data/Sun & Moon/Guardians Rising/79.ts
Normal file
78
data/Sun & Moon/Guardians Rising/79.ts
Normal file
@ -0,0 +1,78 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Guardians Rising'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Honchkrow",
|
||||
fr: "Corboss",
|
||||
},
|
||||
illustrator: "Hideki Ishikawa",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
430,
|
||||
],
|
||||
hp: 110,
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Murkrow",
|
||||
fr: "Cornèbre",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Darkness",
|
||||
],
|
||||
name: {
|
||||
en: "Feint Attack",
|
||||
fr: "Feinte",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 30 damage to 1 of your opponent's Pokémon. This damage isn't affected by Weakness, Resistance, or any other effects on that Pokémon.",
|
||||
fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de votre adversaire. Ces dégâts ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur ce Pokémon.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Raven's Claw",
|
||||
fr: "Serre de Corbeau",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 10 more damage for each damage counter on all of your opponent's Pokémon.",
|
||||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur les Pokémon de votre adversaire.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user