1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00

72 lines
1.2 KiB
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 '../Forbidden Light'
const card: Card = {
name: {
en: "Clawitzer",
fr: "Gamblast",
},
illustrator: "otumami",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
693,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Clauncher",
fr: "Flingouste",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Standing By",
fr: "État dAlerte",
},
effect: {
en: "During your next turn, this Pokémon's Sharpshooting attack does 120 damage instead of 40.",
fr: "Pendant votre prochain tour, lattaque Tir de Précision de ce Pokémon inflige 120 dégâts au lieu de 40.",
},
},
{
cost: [
"Water",
],
name: {
en: "Sharpshooting",
fr: "Tir de Précision",
},
effect: {
en: "This attack does 40 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 40 dégâts à lun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card