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

64 lines
1.5 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ヤヤコマ",
'zh-tw': "小箭雀",
th: "ยายาโคมะ",
id: "Fletchling"
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
dexId: [661],
hp: 60,
types: ["Colorless"],
description: {
ja: "普段は 穏やかな 気性だが 戦いになると ホルモンバランスが 変わり 攻撃的になる。",
'zh-tw': "平時性情溫和,但在戰鬥開始後,荷爾蒙的平衡會 發生變化而變得具有攻擊性。",
th: "รักสงบ แต่พอถึงเวลาต่อสู้ ความสมดุลของฮอร์โมนจะเปลี่ยนไปแล้วก้าวร้าวขึ้น",
id: "Biasanya Fletchling bersifat tenang, namun ketika bertarung, keseimbangan hormonnya berubah dan ia menjadi agresif."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "きゅうこうか",
'zh-tw': "急降",
th: "โฉบ",
id: "Menukik Drastis"
},
damage: 30,
effect: {
ja: "このポケモンにも10ダメージ。",
'zh-tw': "這隻寶可夢也受到10點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 10 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 10."
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card