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

65
data-asia/SV/SV4K/007.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "アママイコ",
'zh-tw': "甜舞妮",
th: "อมามาอิโกะ"
},
illustrator: "Kariya",
rarity: "Uncommon",
category: "Pokemon",
dexId: [762],
hp: 90,
types: ["Grass"],
description: {
ja: "元気な 気持ちになれる 甘い 香りを 振りまく。 制汗剤の フレーバーとして 人気が 高い。",
'zh-tw': "會散發出能振奮心情的香甜氣味。作為止汗劑 的香味擁有極高的人氣。",
th: "โปรยกลิ่นหอมหวานที่ทำให้รู้สึกสดชื่น ผลิตภัณฑ์ระงับเหงื่อที่ใช้กลิ่นนี้ได้รับความนิยมสูงมาก"
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "かいてんアタック",
'zh-tw': "迴轉攻擊",
th: "โจมตีหมุนวน"
},
damage: 30
}, {
cost: ["Grass", "Grass"],
name: {
ja: "ダブルスピン",
'zh-tw': "雙重旋轉",
th: "ดับเบิลสปิน"
},
damage: "40×",
effect: {
ja: "コインを2回投げ、オモテの数×40ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×40點傷害。",
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x40"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card