1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 22:59:55 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

79 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Tapu Koko",
fr: "Tokorico",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
785,
],
hp: 120,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Strafe",
fr: "Bombarder",
},
effect: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger ce Pokémon avec lun de vos Pokémon de Banc.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Flashing Bolt",
fr: "Éclair Aveuglant",
},
effect: {
en: "This Pokémon can't use Flashing Bolt during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Éclair Aveuglant pendant votre prochain tour.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card