1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

69 lines
1.1 KiB
TypeScript
Raw 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 '../Rising Rivals'
const card: Card = {
name: {
en: "Floatzel GL",
fr: "Mustéflott Niv. 37",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
419,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
name: {
en: "Incite",
fr: "Inciter",
},
effect: {
en: "Search your discard pile for up to 2 Supporter cards, show them to your opponent, and put them into your hand.",
fr: "Choisissez dans votre pile de défausse jusqu'à 2 cartes Supporter, montrez-les à votre adversaire et placez-les dans votre main.",
},
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Giant Wave",
fr: "Vague géante",
},
effect: {
en: "Floatzel can't use Giant Wave during your next turn.",
fr: "Mustéflott ne peut pas utiliser Vague géante lors de votre prochain tour.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card