1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

81 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 '../Skyridge'
const card: Card = {
name: {
en: "Forretress",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
205,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Pineco",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Exoskeleton",
},
effect: {
en: "All damage done by attacks to Forretress is reduced by 10 (after applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Shell Rupture",
},
effect: {
en: "This attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Double Spin",
},
effect: {
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card