1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

77 lines
1.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../Team Magma vs Team Aqua'
const card: Card = {
name: {
en: "Team Aqua's Sealeo",
fr: "Phogleur de Team Aqua",
de: "Team Aquas Seejong"
},
illustrator: "T. Honda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
364,
],
hp: 70,
types: [
"Water",
],
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Aqua Trance",
fr: "Aqua-transe",
de: "Aqua Trance"
},
effect: {
en: "At the end of your opponent's next turn, the Defending Pokémon is now Asleep.",
fr: "À la fin du prochain tour de votre adversaire, le Pokémon Défenseur est Endormi.",
de: "At the end of your opponent's next turn, the Defending Pokémon is now Asleep."
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Super Hypnoblast",
fr: "Super hypno-rafale",
de: "Super Hypnoblast"
},
effect: {
en: "If the Defending Pokémon is Asleep, this attack does 30 damage plus 20 more damage.",
fr: "Si le Pokémon Défenseur est Endormi, cette attaque inflige 30 dégâts plus 20 dégâts supplémentaires.",
de: "If the Defending Pokémon is Asleep, this attack does 30 damage plus 20 more damage."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
}
export default card