1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

54
data-asia/SV/SV9/105.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "リーリエのアブリボン"
},
illustrator: "saino misaki",
rarity: "None",
category: "Pokemon",
dexId: [743],
hp: 70,
types: ["Psychic"],
description: {
ja: "落ちこんでいる 人や ポケモンの 気持ちを 感じ取っては 手作りの 花粉団子で 元気づけたりする。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
ja: "おさそいウインク"
},
effect: {
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。相手の手札を見て、その中からたねポケモンを好きなだけ選び、相手のベンチに出す。"
}
}],
attacks: [{
cost: ["Psychic"],
name: {
ja: "マジカルショット"
},
damage: 50
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 0
}
export default card