1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

105
cards/pl/pl2/61.ts Normal file
View File

@ -0,0 +1,105 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "pl2-61",
localId: 61,
// Card informations
name: {
en: "Forretress G",
fr: "Forretress Niv. 35",
},
hp: 80,
type: [
Type.METAL,
],
dexId: 205,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/61/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/61/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/61/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl2/61/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
Tag.SP,
],
illustrator: {
id: 84,
name: "Ryota Saito"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Shell Scatter",
fr: "Écrat'coquille",
},
text: {
en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Forretress can't use Shell Scatter during your next turn.",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc). Forretress ne peut pas utiliser Écras'coquille lors de votre prochain tour.",
},
},{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Bomb Risk",
fr: "Risque de bombe",
},
text: {
en: "Does 10 damage to each Benched Pokémon (both yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.) Flip a coin. If tails, Forretress does 80 damage to itself.",
fr: "Inflige 10 dégâts à chaque Pokémon de Banc (les vôtres et ceux de votre adversaire). (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc). Lancez une pièce. Si c'est pile, Forretress s'inflige 80 dégâts.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card