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

48 lines
1.8 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "カミッチュ",
'zh-tw': "裹蜜蟲",
th: "คามิชชู"
},
illustrator: "OKACHEKE",
rarity: "Uncommon",
category: "Pokemon",
dexId: [1011],
hp: 80,
types: ["Dragon"],
description: {
ja: "頭を 出している そとッチュと 尻尾を 出している なかッチュが 助け合い りんごのなかで 暮らす。",
'zh-tw': "由露出了頭部的外頭蟲與 露出了尾巴的裡頭蟲相扶相持, 一起在蘋果裡面生活。",
th: "ตัวนอกที่ยื่นหัวออกมาและตัวในที่ยื่นหางออกมานั้นอาศัยอยู่ด้วยกันในแอปเปิล และคอยช่วยเหลือซึ่งกันและกัน"
},
stage: "Stage1",
attacks: [{
cost: ["Grass", "Fire"],
name: {
ja: "みつあめキャッチャー",
'zh-tw': "蜜糖捕捉器",
th: "ลูกอมน้ำหวานแคชเชอร์"
},
effect: {
ja: "相手のベンチポケモンを1匹選び、バトルポケモンと入れ替える。その後、新しく出てきたポケモンに70ダメージ。",
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到70點傷害。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว สลับกับโปเกมอนบนตำแหน่งต่อสู้ หลังจากนั้น ทำแดเมจ 70 กับโปเกมอนที่เพิ่งออกมาใหม่"
}
}],
retreat: 2,
regulationMark: "H"
}
export default card