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

59 lines
1.1 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ドードー",
'zh-tw': "嘟嘟",
id: "Doduo"
},
illustrator: "Saya Tsuruta",
category: "Pokemon",
dexId: [84],
hp: 70,
types: ["Colorless"],
description: {
ja: "2つの 頭の 脳みそは テレパシーのような 力で 気持ちを 通じ合わせているらしい。",
'zh-tw': "2個腦袋好像會用類似心靈感應的力量, 來傳遞彼此的想法。",
id: "Kabarnya otak pada 2 kepala Doduo saling menyalurkan perasaan dengan kekuatan yang seperti telepati."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "とつげき",
'zh-tw': "突擊",
id: "Menyerang"
},
damage: 30,
effect: {
ja: "このポケモンにも10ダメージ。",
'zh-tw': "這隻寶可夢也受到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