1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +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

102
cards/xy/xy10/37.ts Normal file
View File

@ -0,0 +1,102 @@
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: "xy10-37",
localId: 37,
// Card informations
name: {
en: "Marowak",
fr: "Ossatueur",
},
hp: 100,
type: [
Type.FIGHTING,
],
dexId: 105,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy10/37/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/37/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy10/37/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy10/37/high.png",
},
},
evolveFrom: {
en: "Cubone",
fr: "Osselait",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
abilities: [{
id: 880,
type: AbilityType.TALENT,
name: {
en: "Bodyguard",
fr: "Garde du Corps",
},
text: {
en: "Prevent all effects of attacks done to you or your hand by your opponent's Pokémon. Remove any existing effects.",
fr: "Évitez tous les effets d'attaques infligés à vous-même ou à votre main par les Pokémon de votre adversaire. Retirez tous les effets déjà en action.",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Bonemerang",
fr: "Osmerang",
},
text: {
en: "Flip 2 coins. This attack does 60 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 60 dégâts multipliés par le nombre de côtés face.",
},
damage: 60
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Fates Collide",
code: "xy10"
}
}
export default card