1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16: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

63
data-asia/SV/SV2a/072.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "メノクラゲ",
'zh-tw': "瑪瑙水母",
th: "เมโนคุราเกะ",
id: "Tentacool"
},
illustrator: "miki kudo",
rarity: "Common",
category: "Pokemon",
dexId: [72],
hp: 60,
types: ["Water"],
description: {
ja: "ほとんどが 水分で できている。 体は 海の中では 水と 同化して とても 見えづらいのだ。",
'zh-tw': "絕大部分都是由水組成的身體在海中會與海水同化, 令其他生物很難看見牠。",
th: "ร่างกายส่วนใหญ่เกิดมาจากน้ำ เมื่ออยู่ในทะเลร่างกายจะดูกลมกลืนกับน้ำจนมองแยกไม่ออก",
id: "Tubuh Tentacool hampir seluruhnya terbentuk atas air. Di dalam laut, tubuhnya terlihat menyatu dengan air sehingga sulit dilihat."
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "ぴりっ",
'zh-tw': "麻",
th: "เผ็ด",
id: "Pedas Menyengat"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "みずまき",
'zh-tw': "灑水",
th: "โปรยน้ำ",
id: "Menyiramkan Air"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card