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

45 lines
709 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 "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "阿勃梭魯"
},
illustrator: "rika",
category: "Pokemon",
hp: 110,
types: ["Darkness"],
description: {
'zh-tw': "如風般地奔馳在山野中。 形狀如弓的角能夠敏銳 感應到自然災害的預兆。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "惡棍墜落"
},
effect: {
'zh-tw': "若自己的場上的【惡】能量有3個以上則增加50點傷害。"
},
damage: "20+",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common"
}
export default card