mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
53 lines
863 B
TypeScript
53 lines
863 B
TypeScript
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 |