1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-12 20:07:51 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

58 lines
813 B
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 '../Ultra Prism'
const card: Card = {
name: {
en: "Hippopotas",
fr: "Hippopotas",
},
illustrator: "Yumi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
449,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Eleventh Hour Tackle",
fr: "Tacle Désespéré",
},
effect: {
en: "If there are 3 or fewer cards in your deck, this attack does 130 more damage.",
fr: "Sil y a 3 cartes ou moins dans votre deck, cette attaque inflige 130 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card