1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

51 lines
1.1 KiB
TypeScript
Raw Permalink 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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Zebstrika",
th: "ซีบรายกา"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
description: {
id: "Begitu mendengar guntur, kelompok Pokémon ini mengejar awan petir agar Blitzle di dalam kelompoknya bisa mengecas dari petir.",
th: "เมื่อได้ยินเสียงฟ้าร้อง จะไล่ตามเมฆฝนฟ้าคะนองไปเป็นฝูง เพื่อให้ ชิมามาในฝูงชาร์จไฟจากสายฟ้าได้"
},
stage: "Stage1",
attacks: [{
name: {
id: "Kick",
th: "เตะ"
},
damage: 30,
cost: ["Lightning"]
}, {
name: {
id: "Mach Bolt",
th: "มัคโบลต์"
},
damage: 120,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card