1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

55 lines
1.3 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "キラーメ",
'zh-tw': "晶光芽",
th: "คิราเมะ"
},
illustrator: "GIDORA",
rarity: "Common",
category: "Pokemon",
dexId: [969],
hp: 70,
types: ["Fighting"],
description: {
ja: "洞窟の 壁から 栄養分を 吸収。 毒の 結晶で できた 花びらを 身にまとう。",
'zh-tw': "會從洞窟的壁上吸取養分。包覆在身上的花瓣是用毒的結晶做成的。",
th: "ดูดซับสารอาหารจากผนังถ้ำ ร่างกายห่อหุ้มด้วยกลีบดอกไม้ที่เป็นผลึกพิษ"
},
stage: "Basic",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
ja: "どくのはへん",
'zh-tw': "毒之碎塊",
th: "เศษผลึกพิษ"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをどくにする。",
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[พิษ]"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card