1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

48
data-asia/SV/SV5a/049.ts Normal file
View File

@ -0,0 +1,48 @@
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