1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

48 lines
957 B
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 "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "<火箭隊的>戴魯比",
'zh-cn': "<火箭隊的>戴魯比",
ja: "ロケット団のデルビル"
},
illustrator: "Krgc",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
'zh-tw': "擁有在狩獵的時候 能使用各式各樣的叫聲 來與夥伴溝通的智慧。",
'zh-cn': "擁有在狩獵的時候 能使用各式各樣的叫聲 來與夥伴溝通的智慧。",
ja: "様々な 鳴き声を 使い分け 仲間と コミュニケーションしながら 狩りを おこなう 賢さを持つ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "吐火",
'zh-cn': "吐火",
ja: "ひをはく"
},
damage: 20,
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [228]
}
export default card