1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

55 lines
899 B
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 "../SCC"
const card: Card = {
set: Set,
name: {
'zh-tw': "肯泰羅"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 130,
types: ["Colorless"],
description: {
'zh-tw': "比起其他地區,阿羅拉的肯泰羅性情比較溫和。這似乎與當地的氣候有關。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "蠻牛"
},
effect: {
'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×20點傷害。將這隻寶可夢【混亂】。"
},
damage: "20+",
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "猛撞"
},
effect: {
'zh-tw': "這隻寶可夢也受到30點傷害。"
},
damage: 80,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card