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

55
data-asia/SV/SV4K/006.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "アマカジ",
'zh-tw': "甜竹竹",
th: "อมาคาจิ"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
dexId: [761],
hp: 60,
types: ["Grass"],
description: {
ja: "果物を 煮詰めたような 甘い 汗を かくため 甘味の 少ない 昔は とても 重宝された。",
'zh-tw': "汗水帶著像是經過熬煮的水果甜味,在過去甜食尚少 的時代相當受到人們珍視。",
th: "เพราะเหงื่อหวานราวกับน้ำผลไม้ที่เคี่ยว เลยมีค่ามากในอดีตที่ขนมยังมีน้อย"
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "クイックアタック",
'zh-tw': "快速攻擊",
th: "ควิกแอทแทก"
},
damage: "10+",
effect: {
ja: "コインを1回投げオモテなら、20ダメージ追加。",
'zh-tw': "擲1次硬幣若為正面則增加20點傷害。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card