1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
1.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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