1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

98
cards/gym/gym1/2.ts Normal file
View File

@ -0,0 +1,98 @@
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: "gym1-2",
localId: 2,
// Card informations
name: {
en: "Brock's Rhydon",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 112,
image: {
low: {
en: "https://assets.tcgdex.net/en/gym/gym1/2/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/gym/gym1/2/high.png",
},
},
evolveFrom: {
en: "Rhyhorn",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
abilities: [{
id: 1000,
type: AbilityType.POKEPOWER,
name: {
en: "Bench Guard",
},
text: {
en: "As long as Brock's Rhydon is Benched, whenever 1 of your Benched Pokémon is damaged, you may do 10 of that damage to Brock's Rhydon instead. (If more than 1 of your Benched Pokémon is damaged at the same time, you may use this power once for each of them.)",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Lariat",
},
text: {
en: "Flip a coin. If tails, this attack does nothing.",
},
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-30"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Gym Heroes",
code: "gym1"
}
}
export default card