Feat : clickable effect icons
@@ -3,7 +3,8 @@
|
||||
// import { useSettingsStore } from '~/stores/settingsStore';
|
||||
|
||||
export interface Props {
|
||||
card_id: number | undefined
|
||||
uuid?: string
|
||||
card_id?: number
|
||||
locked?: boolean
|
||||
wrapped?: boolean
|
||||
tilted?: boolean
|
||||
@@ -35,22 +36,31 @@ function cardClick() {
|
||||
emit("click")
|
||||
}
|
||||
|
||||
const rotation = ref(0)
|
||||
const isZooming = ref<boolean>(false)
|
||||
|
||||
function mouseenter(e: MouseEvent) {
|
||||
// User is Right Clicking
|
||||
if ((e.buttons & 2) == 2) {
|
||||
isZooming.value = true
|
||||
}
|
||||
|
||||
function mouseenter(e: Event) {
|
||||
// goStore.hoveredCard = props.card_id
|
||||
}
|
||||
function mouseleave(e: Event) {
|
||||
// goStore.hoveredCard = undefined
|
||||
function mouseleave(e: MouseEvent) {
|
||||
isZooming.value = false
|
||||
}
|
||||
|
||||
watch(
|
||||
() => props.card_id,
|
||||
() => {
|
||||
props.wrapped ? rotation.value = (Math.random() * 4) - 2 : rotation.value = Math.random() > .5 ? 2 : -2
|
||||
},
|
||||
{ immediate: true })
|
||||
function rightClickDown(e: MouseEvent) {
|
||||
isZooming.value = true
|
||||
}
|
||||
|
||||
function rightClickUp(e: MouseEvent) {
|
||||
isZooming.value = false
|
||||
}
|
||||
|
||||
function activateEffect(e: CustomEvent) {
|
||||
console.log(e.detail, props.uuid)
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
card.value?.style.setProperty("--random-seed", -Math.random() * 10 + 's')
|
||||
@@ -58,17 +68,24 @@ onMounted(() => {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div ref="card" class="card" :class="{ active: childCount > 0, wrapped, unlocked: !props.locked }"
|
||||
@contextmenu.prevent="false" @click.left="cardClick" :style="tilted ? `rotate:${rotation}deg;` : ''"
|
||||
@mouseenter="mouseenter" @mouseleave="mouseleave">
|
||||
<div ref="card" class="card" :class="{ active: childCount > 0, wrapped, unlocked: !props.locked, zoom: isZooming }"
|
||||
@contextmenu.prevent="false" @click.left="cardClick" @mousedown.right="rightClickDown"
|
||||
@mouseup.right="rightClickUp" @mouseenter="mouseenter" @mouseleave="mouseleave">
|
||||
<div id="contextMenuButtons" :ref="(el) => { childCount = ((el as Element)?.childElementCount ?? 0) }">
|
||||
<slot></slot>
|
||||
</div>
|
||||
<img :class="`card_image`" v-if="props.card_id"
|
||||
:src="`/cards/${settingsStore.cardStyle}/` + props.card_id.toString().padStart(3, '0') + extension"
|
||||
draggable="false">
|
||||
<template v-if="props.card_id">
|
||||
<svg width="180" height="250" v-if="settingsStore.cardStyle == CardStyles.SVG" viewBox="0 0 298 417">
|
||||
<use :xlink:href="`/cards/${settingsStore.cardStyle}/` + props.card_id.toString().padStart(3, '0') + extension + '#card' + props.card_id"
|
||||
@activate_effect="activateEffect($event)">
|
||||
</use>
|
||||
</svg>
|
||||
<img :class="`card_image`" v-else
|
||||
:src="`/cards/${settingsStore.cardStyle}/` + props.card_id.toString().padStart(3, '0') + extension"
|
||||
draggable="false">
|
||||
</template>
|
||||
|
||||
<img :class="`card_image`" v-if="!props.card_id" :src="'/cards/background.png'" draggable="false">
|
||||
<img :class="`card_image`" v-else :src="'/cards/background.png'" draggable="false">
|
||||
|
||||
</div>
|
||||
|
||||
@@ -82,13 +99,13 @@ onMounted(() => {
|
||||
.card {
|
||||
--max-height: 250px;
|
||||
--margin-bottom: calc(var(--max-height) * 0.05);
|
||||
max-width: 256px;
|
||||
/* max-width: 256px; */
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-bottom: 0px;
|
||||
margin-top: var(--margin-bottom);
|
||||
transition: all 0.250s cubic-bezier(1, 1.81, .59, 1.42), filter .125s cubic-bezier(0.075, 0.82, 0.165, 1), rotate 0.075s cubic-bezier(1, 1.81, .59, 1.42);
|
||||
transition: all 0.075s cubic-bezier(1, 1.81, .59, 1.42);
|
||||
isolation: isolate;
|
||||
pointer-events: all;
|
||||
max-height: var(--max-height);
|
||||
@@ -146,7 +163,7 @@ onMounted(() => {
|
||||
}
|
||||
|
||||
.card.wrapped {
|
||||
max-height: 6px;
|
||||
height: 6px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@@ -154,6 +171,11 @@ onMounted(() => {
|
||||
filter: drop-shadow(.5px .5px .5px gray) drop-shadow(-.5px -.5px .5px gray);
|
||||
}
|
||||
|
||||
.card.zoom {
|
||||
transform: scale(200%);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
#contextMenuButtons {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
@@ -177,4 +199,36 @@ onMounted(() => {
|
||||
border-radius: 12px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
@keyframes gelatine {
|
||||
|
||||
from,
|
||||
to {}
|
||||
|
||||
25% {
|
||||
transform: scale(1, 1.5);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: scale(1.5, 1);
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: scale(1.1, 1.3);
|
||||
}
|
||||
}
|
||||
|
||||
.svg_resource_icon {
|
||||
cursor: pointer;
|
||||
animation: gelatine 0.3s normal;
|
||||
transition: transform .1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||
}
|
||||
|
||||
.svg_resource_icon:active {
|
||||
animation: none;
|
||||
}
|
||||
|
||||
.svg_resource_icon:hover {
|
||||
transform: scale(130%);
|
||||
}
|
||||
</style>
|
||||
@@ -77,7 +77,8 @@ onUnmounted(() => {
|
||||
<template>
|
||||
<div class="cards_container" :class="{ wrapped, rotate }">
|
||||
<TransitionGroup name="list" @enter="onEnter" @leave="onLeave" @before-enter="onBeforeEnter">
|
||||
<CardPreview :card_id="c.cardId" :wrapped="wrapped" v-for="c in cards" :key="c?._id">
|
||||
<CardPreview :card_id="c.cardId" :wrapped="wrapped" v-for="c in cards" :key="c._id"
|
||||
:uuid="c._id.toString()">
|
||||
<slot></slot>
|
||||
</CardPreview>
|
||||
</TransitionGroup>
|
||||
@@ -98,25 +99,29 @@ onUnmounted(() => {
|
||||
transform: translateX(30px);
|
||||
}
|
||||
|
||||
.cards_container.wrapped:before {
|
||||
height: calc(250px - 10px);
|
||||
display: block;
|
||||
content: "";
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.rotate {
|
||||
rotate: 360deg;
|
||||
}
|
||||
|
||||
.cards_container {
|
||||
display: flex;
|
||||
flex-direction: column-reverse;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
min-width: 200px;
|
||||
transition: rotate v-bind('shuffleAnimationSpeed') ease;
|
||||
}
|
||||
|
||||
.cards_container.wrapped {
|
||||
flex-direction: column-reverse;
|
||||
}
|
||||
|
||||
.cards_container.wrapped:before {
|
||||
height: calc(250px - 10px);
|
||||
display: block;
|
||||
content: "";
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.empty {
|
||||
max-height: 10px;
|
||||
}
|
||||
|
||||
@@ -4,19 +4,20 @@ import type { Container } from '~/netcode/interfaces';
|
||||
|
||||
|
||||
export interface Props {
|
||||
container: Container
|
||||
market: Container
|
||||
fire_gems: Container
|
||||
}
|
||||
|
||||
const props = defineProps<Props>()
|
||||
|
||||
const authStore = useAuthStore()
|
||||
|
||||
const selfPlayer = computed(() => authStore.logged ? playerList.value?.find(p => p.user.userId == authStore.selfUser.userId) : undefined)
|
||||
// const selfPlayer = computed(() => authStore.logged ? playerList.value?.find(p => p.user.userId == authStore.selfUser.userId) : undefined)
|
||||
|
||||
const isTurn = computed(() => goStore.self && goStore.current_game?.started && (goStore.self.team == goStore.current_game.current_turn))
|
||||
const clientStore = useClientSideStore()
|
||||
// const isTurn = computed(() => goStore.self && goStore.current_game?.started && (goStore.self.team == goStore.current_game.current_turn))
|
||||
// const clientStore = useClientSideStore()
|
||||
|
||||
const buyableFiregem = computed(() => goStore?.current_game?.gem_stack.at(-1))
|
||||
// const buyableFiregem = computed(() => goStore?.current_game?.gem_stack.at(-1))
|
||||
|
||||
|
||||
function onBeforeEnter(el: Element) {
|
||||
@@ -43,63 +44,12 @@ function onEnter(el: any, done: () => unknown) {
|
||||
<div id="market">
|
||||
<CardPreview :tilted="false" :card_id="undefined"></CardPreview>
|
||||
<div class="separator"></div>
|
||||
<TransitionGroup name="market_card">
|
||||
<CardPreview :tilted="false" :card_id="c?.card_id" v-for="c in goStore.current_game?.market"
|
||||
:key="c?.card_id" @click="c && buy(c)">
|
||||
<template
|
||||
v-if="isTurn && goStore.self?.turn && c && c.cost && (goStore.self?.turn.gold_reserve ?? 0) >= c.cost">
|
||||
<button @click.stop="buy(c)">BUY</button>
|
||||
<button @click.stop="clientStore.findUseEffect(CardEffects.PLAY_NEXT_CARD_BOUGHT, c);"
|
||||
v-if="clientStore.activatedClientside.find((e: Effect) => (e.effect == CardEffects.PLAY_NEXT_CARD_BOUGHT) && e.usable)">
|
||||
BUY IN HAND</button>
|
||||
<button @click.stop="clientStore.findUseEffect(CardEffects.STACK_NEXT_CARD_BOUGHT, c)"
|
||||
v-if="clientStore.activatedClientside.find((e: Effect) => (e.effect == CardEffects.STACK_NEXT_CARD_BOUGHT) && e.usable)">
|
||||
BUY IN STACK (generic)</button>
|
||||
|
||||
<button @click.stop="clientStore.findUseEffect(CardEffects.STACK_NEXT_ACTION_BOUGHT, c)"
|
||||
v-if="c.card_type == CardType.ACTION && clientStore.activatedClientside.find((e: Effect) => (e.effect == CardEffects.STACK_NEXT_ACTION_BOUGHT) && e.usable)">
|
||||
BUY IN STACK (actions)</button>
|
||||
</template>
|
||||
</CardPreview>
|
||||
</TransitionGroup>
|
||||
<CardsGrouped :container="market"></CardsGrouped>
|
||||
<div class="separator"></div>
|
||||
<CardPreview :tilted="false" :card_id="goStore.current_game?.gem_stack.at(-1)?.card_id"
|
||||
@click="buy(goStore.current_game?.gem_stack.at(-1)!)">
|
||||
<template
|
||||
v-if="isTurn && goStore.self?.turn && goStore.current_game?.gem_stack.length && goStore.current_game?.gem_stack.length > 0 && (goStore.self?.turn.gold_reserve ?? 0) >= (goStore.current_game?.gem_stack.at(-1)?.cost ?? Infinity)">
|
||||
<button @click.stop="buy(goStore.current_game.gem_stack.at(-1)!)">
|
||||
BUY
|
||||
</button>
|
||||
<button @click.stop="clientStore.findUseEffect(CardEffects.PLAY_NEXT_CARD_BOUGHT, buyableFiregem)"
|
||||
v-if="buyableFiregem && clientStore.activatedClientside.find((e: Effect) => (e.effect == CardEffects.PLAY_NEXT_CARD_BOUGHT) && e.usable)">
|
||||
BUY IN HAND</button>
|
||||
<button @click.stop="clientStore.findUseEffect(CardEffects.STACK_NEXT_CARD_BOUGHT, buyableFiregem)"
|
||||
v-if="buyableFiregem && clientStore.activatedClientside.find((e: Effect) => (e.effect == CardEffects.STACK_NEXT_CARD_BOUGHT) && e.usable)">
|
||||
BUY IN STACK(generic)
|
||||
</button>
|
||||
</template>
|
||||
</CardPreview>
|
||||
<CardsGrouped :container="fire_gems" :wrapped="true"></CardsGrouped>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
|
||||
<style scoped>
|
||||
/* .market_card-leave-active,
|
||||
.market_card-move {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.market_card-enter-from {
|
||||
transform: translate(-500px);
|
||||
}
|
||||
|
||||
|
||||
.market_card-enter-active,
|
||||
.market_card-leave-active {
|
||||
transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
|
||||
} */
|
||||
</style>
|
||||
<style scoped>
|
||||
#market {
|
||||
width: min-content;
|
||||
@@ -118,7 +68,6 @@ function onEnter(el: any, done: () => unknown) {
|
||||
filter: drop-shadow(2.5px 7.5px 1px rgba(0, 0, 0, .60));
|
||||
backdrop-filter: blur(5px) brightness(80%);
|
||||
background: rgba(155, 62, 62, 0.46);
|
||||
|
||||
}
|
||||
|
||||
.separator {
|
||||
|
||||
@@ -173,7 +173,7 @@ onUnmounted(() => {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <MarketCards :container="game.market"></MarketCards> -->
|
||||
<MarketCards :market="game.market" :fire_gems="game.fireGems"></MarketCards>
|
||||
|
||||
<!-- <div id="player_list_container">
|
||||
<div id="player_list">
|
||||
@@ -220,6 +220,9 @@ onUnmounted(() => {
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
/* background: url('/images/bg-darkgrass.png'); */
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card1">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -36,8 +36,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -61,7 +61,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 4.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card2">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card3">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,23 +17,23 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );" id="d4">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
@@ -48,7 +48,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card4">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -50,7 +50,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card5">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card6">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -61,7 +61,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 4.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card7">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -54,7 +54,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card8">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre</tspan><tspan x="0" dy="1em">Garde que vous avez en jeu</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card9">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card10">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card11">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -40,8 +40,8 @@
|
||||
<g id="d5">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );" id="d6">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d7">
|
||||
@@ -57,7 +57,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card12">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque Champion</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -45,7 +45,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card13">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card14">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,8 +17,8 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
@@ -30,8 +30,8 @@
|
||||
<g id="d3">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
<circle cx="0" cy="0" r="15.0" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d4">
|
||||
<circle cx="0" cy="0" r="15.0" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
@@ -42,8 +42,8 @@
|
||||
<g id="d6">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d7">
|
||||
<circle cx="0" cy="0" r="15.0" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d7">
|
||||
<circle cx="0" cy="0" r="15.0" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d8">
|
||||
@@ -61,7 +61,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card15">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card16">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card17">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card18">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card19">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Assomez le champion ciblé. </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '3' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card20">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card21">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card22">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -36,8 +36,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -61,7 +61,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 4.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card23">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -56,7 +56,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card24">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card25">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -45,7 +45,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card26">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -54,7 +54,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card27">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">restack_discarded_card</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -38,7 +38,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card28">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -50,7 +50,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card29">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -41,8 +41,8 @@
|
||||
<g id="d5">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d6">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d7">
|
||||
@@ -64,7 +64,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 4.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card30">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card31">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card32">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card33">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card34">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -54,7 +54,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card35">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card36">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -45,7 +45,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card37">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card38">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card39">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card40">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier jusqu'à deux</tspan><tspan x="0" dy="1em">cartes de votre main et/ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -56,7 +56,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card41">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,8 +17,8 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
@@ -49,7 +49,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card42">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -54,7 +54,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.6 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card43">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -54,7 +54,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card44">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -36,8 +36,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -61,7 +61,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 4.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card45">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card46">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card47">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher une carte, puis</tspan><tspan x="0" dy="1em"> vous défausser d'une carte.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -56,7 +56,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card48">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="15.0" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="15.0" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -40,23 +40,28 @@
|
||||
<use xlink:href="#d4" x="137.0" y="26.0" />
|
||||
</g>
|
||||
<g id="d6">
|
||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d7">
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d7">
|
||||
<circle cx="0" cy="0" r="15.0" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d8">
|
||||
<circle cx="30" cy="22.5" r="15" fill="black" filter="url(#drop-shadow)" />
|
||||
<use xlink:href="#d6" x="137.0" y="26.0" />
|
||||
<use xlink:href="#d6" x="137.0" y="35.666666666666664" />
|
||||
<use xlink:href="#d7" x="137.0" y="22.5" />
|
||||
</g>
|
||||
<g id="effects">
|
||||
<path d="M10,45 L264,45" stroke="black" stroke-width="1" />
|
||||
<path d="M10,90 L264,90" stroke="black" stroke-width="1" />
|
||||
<use xlink:href="#d3" x="0" y="0" />
|
||||
<use xlink:href="#d5" x="0" y="45" />
|
||||
<use xlink:href="#d7" x="0" y="90" />
|
||||
<use xlink:href="#d8" x="0" y="90" />
|
||||
</g>
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card49">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -56,7 +56,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.7 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card50">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez piocher jusqu'à deux cartes,</tspan><tspan x="0" dy="1em">défaussez-vous ensuite d'autant de cartes</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -38,7 +38,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card51">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">L'adversaire ciblé</tspan><tspan x="0" dy="1em">se défausse d'une carte.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card52">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card53">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">L'adversaire ciblé se défausse d'une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.0 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card54">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre x</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -45,7 +45,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card55">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -35,8 +35,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card56">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card57">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card58">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card59">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card60">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-11.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Mettez la prochaine carte dont</tspan><tspan x="0" dy="1em">vous faites l'acquisition ce tour-ci</tspan><tspan x="0" dy="1em"> dans votre main.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card61">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,8 +17,8 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
@@ -42,7 +42,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card62">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,19 +17,19 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">8</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez deux cartes.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -52,7 +52,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card63">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_champions_passive</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card64">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">+ x None</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -45,7 +45,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card65">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">damage_all_champions</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -45,7 +45,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card66">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">restack_discarded_action</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.4 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card67">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,8 +17,8 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
@@ -40,7 +40,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card68">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,8 +17,8 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
@@ -30,8 +30,8 @@
|
||||
<g id="d3">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d4">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card69">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-6.666666666666667" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">damage_all_champions </tspan><tspan x="0" dy="1em">Piochez une carte.</tspan></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -47,7 +47,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card70">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">discard_x_and_draw_x</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">7</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -38,7 +38,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card71">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">Assomez le champion ciblé.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -38,7 +38,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card72">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="yellow" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">6</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica">Piochez une carte.</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -56,7 +56,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="rgb(206, 182, 167)" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card73">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -17,8 +17,8 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
@@ -42,7 +42,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card74">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="blue" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">4</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -54,7 +54,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightblue" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card75">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="green" stop-opacity="1" />
|
||||
@@ -17,15 +17,15 @@
|
||||
<circle cx="1" cy="1" r="20" fill="black" filter="url(#drop-shadow)" />
|
||||
<circle cx="0" cy="0" r="20" fill="url(#grad2)" />
|
||||
</g>
|
||||
<g id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="console.warn('unknown interaction')" id="d0">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -36,8 +36,8 @@
|
||||
<g id="d4">
|
||||
<text x="0" y="-0.0" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d5">
|
||||
<circle cx="0" cy="0" r="18.333333333333332" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d6">
|
||||
@@ -59,7 +59,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgreen" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card76">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,16 +20,16 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '2' } ) );" id="d3">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d4">
|
||||
@@ -50,7 +50,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card77">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card78">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_action</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card79">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -42,7 +42,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card80">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-7.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">+ x pour chaque autre Couteau</tspan><tspan x="0" dy="1em">que vous avez en jeu</tspan></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card81">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -42,7 +42,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card82">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">cheaper_champion</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card83">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card84">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card85">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -28,7 +28,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card86">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -42,7 +42,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card87">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -42,7 +42,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card88">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -42,7 +42,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card89">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card90">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,12 +20,12 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">5</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -39,7 +39,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card91">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="red" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-5.5" font-size="11" text-anchor="middle" fill="black" font-family="Helvetica"><tspan x="0" dy="0em">Vous pouvez sacrifier une carte</tspan><tspan x="0" dy="1em">de votre main ou de votre défausse.</tspan></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightcoral" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card92">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="13.333333333333334" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -43,7 +43,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card93">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">3</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card94">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,8 +20,8 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica">buy_gem_for_free</text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="red" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
@@ -34,7 +34,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card95">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -29,7 +29,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
width="298" height="417" viewBox="0 0 298 417">
|
||||
width="298" height="417" viewBox="0 0 298 417" id="card96">
|
||||
<defs>
|
||||
<linearGradient x1="0" y1="0" x2="1" y2="0" gradientUnits="objectBoundingBox" id="grad1">
|
||||
<stop offset="0" stop-color="gray" stop-opacity="1" />
|
||||
@@ -20,12 +20,12 @@
|
||||
<g id="d0">
|
||||
<text x="0" y="-0.0" font-size="14" text-anchor="middle" fill="black" font-family="Helvetica"></text>
|
||||
</g>
|
||||
<g id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '0' } ) );" id="d1">
|
||||
<circle cx="0" cy="0" r="20" fill="yellow" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="black" font-weight="bold" font-family="Helvetica">1</text>
|
||||
</g>
|
||||
<g id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" onclick="console.log()" />
|
||||
<g class="svg_resource_icon" onclick="this.dispatchEvent(new CustomEvent( 'activate_effect', { bubbles: true, composed:true, detail: '1' } ) );" id="d2">
|
||||
<circle cx="0" cy="0" r="20" fill="green" x="0" y="0" />
|
||||
<text x="0" y="9" font-size="24" text-anchor="middle" fill="white" font-weight="bold" font-family="Helvetica">2</text>
|
||||
</g>
|
||||
<g id="d3">
|
||||
@@ -39,7 +39,7 @@
|
||||
</defs>
|
||||
<use xlink:href="#drop-shadow" />
|
||||
<g id="background">
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" />
|
||||
<rect x="0" y="0" width="298" height="417" rx="15" ry="18" fill="black" stroke="white" stroke-width="1" />
|
||||
<rect x="12" y="12" width="274" height="388" rx="0" ry="0" fill="lightgrey" />
|
||||
</g>
|
||||
<g id="title">
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.6 KiB |