1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

59 lines
1.3 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ネイティ",
'zh-tw': "天然雀",
id: "Natu"
},
illustrator: "sowsow",
category: "Pokemon",
dexId: [177],
hp: 50,
types: ["Psychic"],
description: {
ja: "羽が 育ちきって おらず 飛び跳ねるようにして 移動する。 いつも なにかを 見つめている。",
'zh-tw': "翅膀還沒有完全長好,所以只能一跳一跳地移動。 一直在注視著什麼。",
id: "Karena sayapnya belum tumbuh sempurna, Natu berpindah dengan cara melompat. Pokémon ini selalu memandangi sesuatu."
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "さんれんづき",
'zh-tw': "三連撞",
id: "Tusukan Tiga Kali"
},
damage: "10×",
effect: {
ja: "コインを3回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲3次硬幣造成正面出現的次數×10點傷害。",
id: "Lempar koin 3 kali. Serangan ini memberikan kerusakan sejumlah 10 untuk tiap lemparan dengan hasil sisi depan."
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card