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

55
data-asia/SV/SV4M/001.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "アメタマ",
'zh-tw': "溜溜糖球",
th: "อาเมทามะ"
},
illustrator: "Yoriyuki Ikegami",
rarity: "Common",
category: "Pokemon",
dexId: [283],
hp: 50,
types: ["Grass"],
description: {
ja: "頭の 先から 水飴に 似た 甘い 匂いの 液体を 出す。 水草の 多い 池に 棲む。",
'zh-tw': "從頭頂分泌出的液體有著如同麥芽糖般的甜味。住在有大量水草的池塘裡。",
th: "ส่วนยอดของหัวจะมีของเหลวกลิ่นหอมหวานราวน้ำเชื่อมไหลออกมา อาศัยอยู่ในบ่อที่มี พืชน้ำมากมาย"
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "トリプルスピン",
'zh-tw': "三重旋轉",
th: "ทริปเปิลสปิน"
},
damage: "10×",
effect: {
ja: "コインを3回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲3次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card