import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Float Stone", fr: "Pierrallégée", }, illustrator: "Toyste Beach", rarity: "Uncommon", category: "Trainer", set: Set, effect: { fr: "Le Pokémon auquel cette carte est attachée n'a pas de Coût de Retraite.", en: "The Pokémon this card is attached to has no Retreat Cost." }, trainerType: "Tool", } export default card