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

45 lines
694 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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "阿勃梭魯"
},
illustrator: "Eri Yamaki",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
stage: "Basic",
attacks: [{
name: {
'zh-tw': "拖出"
},
effect: {
'zh-tw': "選擇對手的1隻備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到30點傷害。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "劈開"
},
damage: 80,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card