1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 03:59:54 +00:00

50 lines
909 B
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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "ราคุไร",
id: "Electrike"
},
illustrator: "Nakamura Ippan",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
th: "สะสมไฟฟ้าสถิตไว้ที่ขนตามร่างกาย ในฤดูที่อากาศแห้งจะปล่อย ประกายไฟออกมาทั่วตัว"
},
stage: "Basic",
attacks: [{
name: {
th: "เตะกลับหลัง",
id: "Tendangan Belakang"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
th: "โวลต์ต่ำ",
id: "Voltase Mini"
},
damage: 30,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card