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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

53
data-asia/SV/SV1S/079.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "オリーニョ"
},
illustrator: "Oswaldo KATO",
category: "Pokemon",
dexId: [929],
hp: 90,
types: ["Grass"],
description: {
ja: "フレッシュな 香りの 美味しい オイルを 分けてくれる。 古くから 人間と 共存してきた。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ビンタ"
},
damage: 20
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "オイルかけ"
},
damage: 40,
effect: {
ja: "次の相手の番、このワザを受けたポケモンがワザを使うとき、相手はコインを1回投げる。ウラならそのワザは失敗。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card