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

65 lines
1.6 KiB
TypeScript
Raw 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: "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