1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

59 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Lapras",
fr: "Lokhlass",
es: "Lapras",
it: "Lapras",
pt: "Lapras",
de: "Lapras"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Water"],
stage: "Basic",
retreat: 2,
regulationMark: "E",
illustrator: "Naoki Saito",
description: {
en: "Crossing icy seas is no issue for this cold-resistant Pokémon. Its smooth skin is a little cool to the touch."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Icy Wind"
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep."
}
}, {
cost: ["Water", "Water", "Colorless"],
name: {
en: "Splash Arch"
},
effect: {
en: "Put all Energy attached to this Pokémon into your hand. This attack does 100 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card